-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.HTM
1521 lines (1480 loc) · 60.5 KB
/
README.HTM
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Mobile Atlas Creator - Readme</title>
<style type="text/css">
body {
margin-left: 10px;
font-family: Helvetica, Arial, sans-serif;
}
h1,h2,h3,h4 {
color: #0000CC;
font-style: italic;
}
h1 {
border-bottom: solid thin black;
}
h2 {
margin-left: 20px;
}
h3 {
margin-left: 50px;
}
h4 {
margin-left: 80px;
}
pre {
margin-left: 140px;
}
p,ul,ol {
font-size: 110%;
margin-left: 100px;
}
</style>
</head>
<body>
<h1>Mobile Atlas Creator - Read-me</h1>
<p>Welcome to Mobile Atlas Creator read-me file for end users.</p>
<p>Before January 2010 this project was known as "TrekBuddy Atlas
Creator".</p>
<p>
Mobile Atlas Creator is an open source project hosted on
SourceForge.net: <br> <a href="http://mobac.sf.net">http://mobac.sf.net</a>
</p>
<h2>Table of contents</h2>
<ul style="margin-left: 50px;">
<li><a href="#License">License</a></li>
<li><a href="#Description">Description</a></li>
<li><a href="#Requirements">Requirements</a>
<ul style="margin-left: 10px;">
<li><a href="#JAI">Java Advanced Imaging" (JAI)</a></li>
</ul></li>
<li><a href="#Installation">Installation</a></li>
<li><a href="#Start">Application start</a></li>
<li><a href="#AtlasFormats">The different atlas formats</a>
<ul style="margin-left: 10px;">
<li><a href="#AFTrackOSZ">AFTrack (OSZ)</a></li>
<li><a href="#AlpineQuestMap">AlpineQuestMap (AQM)</a></li>
<li><a href="#AndNav">AndNav</a></li>
<li><a href="#BigPlanet">Big Planet Tracks</a></li>
<!-- CacheBox -->
<li><a href="#CacheWolf">CacheWolf</a></li>
<li><a href="#GarminCustom">Garmin Custom maps</a></li>
<li><a href="#Glopus">Glopus</a></li>
<li><a href="#GMF">Glopus Map File / AFTrack (GMF)</a></li>
<li><a href="#KMZ">Google Earth Overlay (KMZ)</a></li>
<!-- GPS Sports Tracker -->
<li><a href="#Magellan">Magellan RMP</a></li>
<li><a href="#MAPLORER">MAPLORER</a></li>
<li><a href="#Maverick">Maverick</a></li>
<li><a href="#MGMaps">MGMaps</a></li>
<li><a href="#MTE">Mobile Trail Explorer (MTE)</a></li>
<li><a href="#NaviComputer">NaviComputer</a></li>
<li><a href="#nfComPass">nfComPass</a></li>
<li><a href="#OruxMaps">OruxMaps</a></li>
<li><a href="#OSMAND">OSMAND</a></li>
<li><a href="#Osmdroid">Osmdroid</a></li>
<li><a href="#OSMTracker">OSMTracker</a></li>
<li><a href="#Ozi">OziExplorer / large PNG image</a></li>
<li><a href="#PathAway">PathAway</a></li>
<li><a href="#RMaps">RMaps</a></li>
<li><a href="#SportsTracker">[Nokia] Sports Tracker</a></li>
<li><a href="#TomTomRaster">TomTom Raster</a></li>
<li><a href="#TTQV">Touratech QV</a></li>
<li><a href="#TrekBuddy">TrekBuddy</a></li>
<li><a href="#TwoNav">TwoNav (RMAP)</a></li>
<li><a href="#Viewranger">Viewranger</a></li>
<!-- UBlox -->
</ul></li>
<li><a href="#Enhancement">Enhancement requests</a></li>
<li><a href="#Bugs">Problems, Bugs & Errors</a></li>
<li><a href="#Limitations">Known problems and limitations</a></li>
<li><a href="#AdvancedUsers">Details for advanced users</a>
<ul style="margin-left: 10px;">
<li><a href="#DirectoryConfig">Specifying directory
configuration</a></li>
<li><a href="#TileStoreDir">Moving the tile store directory</a>
</li>
<li><a href="#ExternalTools">Starting external tools from
within MOBAC</a></li>
</ul>
<li><a href="#CustomMapSource">Custom map sources</a>
<ul style="margin-left: 10px;">
<li><a href="#SimpleCustomMapSource">Simple custom map
sources</a></li>
<li><a href="#CustomWMSMapSource">Custom WMS map sources</a></li>
<li><a href="#CustomMultiLayerMapSource">Custom multi-layer
map sources</a></li>
<li><a href="#CloudMadeMapSource">Custom CloudMade map
sources</a></li>
<li><a href="#BeanShellMapSource">Custom BeanShell map
sources</a></li>
<li><a href="#CustomMapPack">Custom MapPack</a></li>
<li><a href="#Mapsforge">MOBAC integrated rendering of
tiles based on OpenStreetmap (mapsforge) vector data</a></li>
<li><a href="#FileBased">Custom atlas as map source /
locally generated tiles</a></li>
</ul></li>
</ul>
<hr>
<h2>
<a name="License">License</a>
</h2>
<p>
Mobile Atlas Creator is under GNU General Public License Version 2
(GPL). For details on the GPL see the license file <a href="gpl.txt">gpl.txt</a>.<br>
The source code is available on the <a
href="http://sourceforge.net/projects/mobac/files/">SourceForge.net</a>
for download and in the <a href="http://sourceforge.net/p/mobac/code/">project's
source code Subversion repository</a>.
</p>
<h2>
<a name="Description">Description</a>
</h2>
<p>
Mobile Atlas Creator creates atlases for several applications. For
example <a href="http://www.trekbuddy.net">TrekBuddy</a> and <a
href="http://code.google.com/p/mobile-trail-explorer/">Mobile
Trail Explorer (MTE)</a>, the Android applications <a
href="http://www.andnav.org/">AndNav</a>, <a
href="http://www.codesector.com/maverick.php">Maverick</a>, <a
href="http://code.google.com/p/big-planet-tracks/">Big Planet
Tracks</a>, <a
href="http://robertdeveloper.blogspot.com/search/label/rmaps.release">RMaps</a>,
<a href="http://www.oruxmaps.com/">OruxMaps</a>, the Pocket PC
application <a href="http://www.glopus.de/">Glopus</a> and the
commercial Windows application <a href="http://www.oziexplorer.com/">OziExplorer</a>.
The map image created for OziExplorer can also be used with any PNG
capable image viewer (map image in one large PNG file).
</p>
<h2>
<a name="Requirements">Requirements</a>
</h2>
<p>This application requires that a Java SE Runtime Environment 8 or higher is installed on the computer.</p>
<p>If you have the choice between different Java Runtimes you
should prefer the Java Runtime provided by Sun/Oracle. Especially the
OpenJDK has some bugs regarding MOBAC and tends to crash on certain
situations.</p>
<h3>
<a name="JAI">Java Advanced Imaging (optional)</a>
</h3>
<p>
For reducing the color depth of downloaded tiles the library files (
<tt>jai_core.jar</tt>
and
<tt>jai_codec.jar</tt>
) of the "Java Advanced Imaging" (JAI) have to be present on the
system respectively in the same directory as Mobile_Atlas_Creator.jar.
Ready to use binary builds of the Java Advanced Imaging library can be
obtained at <a
href="http://download.java.net/media/jai/builds/release/1_1_3/jai-1_1_3-lib.zip">http://download.java.net/media/jai/builds/release/1_1_3/jai-1_1_3-lib.zip</a>
</p>
<h2>
<a name="Installation">Installation</a>
</h2>
<p>
Copy or move the unzipped files to a folder where you would like to
have Mobile Atlas Creator installed. On computers running Windows
please make sure <b>not to install MOBAC into <tt>Program
Files</tt> sub-directory!
</b>
</p>
<h2>
<a name="Start">Application start</a>
</h2>
<h3>Windows</h3>
<p>
The application is started by executing the
<tt>Mobile Atlas Creator.exe</tt>
. During the first application start all necessary files and folders
are automatically created by the application.
</p>
<h3>Linux and OSX</h3>
<p>
You can start MOBAC by executing the start-up script
<tt>start.sh</tt>
. Before starting MOBAC the first time it may be necessary to set the
executable bit for
<tt>start.sh</tt>
e.g. by executing the following command:
</p>
<pre>chmod u+x start.sh</pre>
<p>During the first application start all necessary files and
folders are automatically created by the application.</p>
<hr>
<!-- *************************************************************************** -->
<h2>
<a name="AtlasFormats">The different atlas formats</a>
</h2>
<!-- *************************************************************************** -->
<h3>
<a name="AFTrackOSZ">AFTrack OSZ</a>
</h3>
<p>
For creating atlases compatible with AFTrack (Symbian S60) you have to
select <b>AFTrack (OSZ)</b> as format in atlas format selection dialog
that appears when starting a new atlas (menu <b>Atlas</b> entry <b>New
Atlas</b>).
</p>
<p>
OSZ is a ZIP-archive. Within this zip archive a (large) number of
tiles with the calibrated folder structure (coordinates) are stored.
OSZ only works if each tile has got a resolution of 256x256 Pixels. So
be sure to uncheck <b>Recreate/adjust map tiles (CPU intensive)</b>.
</p>
<p>The output format is one file for each layer in the
corresponding folder.</p>
<h4>
<a name="AFTrackOSZRestriction">Restrictions</a>
</h4>
<p>Depending on the device free memory the file maybe not work. So
more then 80000 tiles should not be used.</p>
<!-- *************************************************************************** -->
<h3>
<a name="AlpineQuestMap">AlpineQuestMap (AQM)</a>
</h3>
<p>Sorry no further details are available for this atlas format.</p>
<!-- *************************************************************************** -->
<h3>
<a name="AndNav">Creating and using atlases with AndNav</a>
</h3>
<p>
For creating atlases compatible with AndNav you have to select <b>AndNav
atlas format</b> as format in atlas format selection dialog that appears
when starting a new atlas (menu <b>Atlas</b> entry <b>New Atlas</b>).<br>
As atlases for AndNav do not support all features provided by Mobile
Atlas Creator the following settings are ignored when creating atlases
for AndNav:
</p>
<ul>
<li>Change height or width of the map tiles</li>
<li>Name of all layers and maps</li>
<li>Structure of the atlas (which maps belongs to which layer)</li>
</ul>
<!-- *************************************************************************** -->
<h3>
<a name="BigPlanet">Creating and using atlases with Big Planet
Tracks</a>
</h3>
<p>
For creating offline atlases compatible with <a
href="http://code.google.com/p/big-planet-tracks/">Big Planet
Tracks</a> (Android application) you have to select <b>Big Planet
Tracks SQLite</b> as format in atlas format selection dialog that appears
when starting a new atlas (menu <b>Atlas</b> entry <b>New Atlas</b>).<br>
The atlas format BigPlanet SQLite does not support all features
provided by Mobile Atlas Creator the following settings can not be
used or are ignored when creating atlases using this output format:
</p>
<ul>
<li>Recreate/adjust map tiles with custom tile size (height and
<li>Name of all layers and maps</li>
<li>Structure of the atlas (which maps belongs to which layer)</li>
<li>Atlases created after another are merged into one Database
named <tt>[Atlasname] atlas.sqlitedb</tt> which is located in the
atlas output directory.
</li>
</ul>
<!-- *************************************************************************** -->
<h3>
<a name="CacheWolf">Creating atlases for CacheWolf</a>
</h3>
<p>
For creating atlases compatible with <a href="http://www.cachewolf.de">CacheWolf</a>
you have to select <b>CacheWolf WFL</b> as format in atlas format
selection dialog that appears when starting a new atlas (menu <b>Atlas</b>
entry <b>New Atlas</b>).
</p>
<h4>Custom tile processing settings enabled</h4>
<p>Maps that have custom tile processing options set are saved as
tiled images with one WFL calibration file for each tile. All
processing options such as image format and tile size can be used.</p>
<h4>Custom tile processing settings disabled</h4>
<p>
In this mode automatic tiling is disabled and the same <a
href="#OziRestriction">restrictions</a> and the <a href="#OziWarning">warning</a>
as for the OziExplorer output format apply.
</p>
<p>
The output format of an "atlas" for CacheWolf is one subdirectory per
layer and within this subdirectory one
<tt>PNG</tt>
image and one
<tt>WFL</tt>
file per defined map.
</p>
<!-- *************************************************************************** -->
<h3>
<a name="GarminCustom">Creating Garmin Custom maps</a>
</h3>
<p>
For creating atlases of Creating Garmin Custom maps you have to select
<b>Garmin Custom Map (KMZ)</b> as format in atlas format selection
dialog that appears when starting a new atlas (menu <b>Atlas</b> entry
<b>New Atlas</b>).<br> Details about the Garmin Custom Map format
can be found in the <a
href="https://forums.garmin.com/forumdisplay.php?f=205">Garmin
Forums</a>
</p>
<p>Using this atlas output format the following features are
ignored when creating atlases:</p>
<ul>
<li>Recreate/adjust map tiles (custom tile size and image format)</li>
</ul>
<p>
The output format of an "atlas" for Garmin Custom maps is one
<tt>KMZ</tt>
file per layer containing all maps (max 100) as separate
<tt>JPG</tt>
image files. The JPEG compression rate can be specified for each
map/image using image format selector in the custom tile processing
section. The Garmin Custom Map format defines a maximum image size of
1024x1024 pixels. If a map is larger it will be automatically scaled
down to fit into this size. You can prevent scaling when setting the
max map size in the settings dialog to 1024.
</p>
<!-- *************************************************************************** -->
<h3>
<a name="Glopus">Creating atlases for Glopus</a>
</h3>
<p>
For creating atlases compatible with Glopus you have to select <b>Glopus
(PNG & KAL)</b> or <b> Glopus Map File (GMF)</b> as format in atlas
format selection dialog that appears when starting a new atlas (menu <b>Atlas</b>
entry <b>New Atlas</b>).
</p>
<h4>Glopus (PNG & KAL)</h4>
<p>
Using this atlas output format the same <a href="#OziRestriction">restrictions</a>
and the <a href="#OziWarning">warning</a> as for the OziExplorer
output format apply.
</p>
<p>
The output format of an "atlas" for Glopus is one subdirectory per
layer and within this subdirectory one
<tt>PNG</tt>
image and one
<tt>KAL</tt>
file per defined map.
</p>
<h4>Glopus Map File (GMF)</h4>
<p>
Within this file a (large) number of tiles with its calibrated
coordinates are stored. Glopus works best if each tile has a
resolution of 1024x1024 pixels. So check <b>Recreate/adjust map
tiles (CPU intensive)</b>. Width and height should be set to <b>1024</b>.
</p>
<p>The output format is one file for each layer in the
corresponding folder.</p>
<!-- *************************************************************************** -->
<h3>
<a name="GMF">Glopus Map File (GMF) / AFTrack</a>
</h3>
<p>
For creating atlases compatible with AFTrack (Symbian S60) you have to
select <b>Glopus Map File (GMF)</b> as format in atlas format
selection dialog that appears when starting a new atlas (menu <b>Atlas</b>
entry <b>New Atlas</b>).
</p>
<p>
Within this file a (large) number of tiles with its calibrated
coordinates are stored. AFTrack works best if each tile has got a
resolution of 256x256 Pixels. So uncheck <b>Recreate/adjust map
tiles (CPU intensive)</b>.
</p>
<p>The output format is one file for each layer in the
corresponding folder.</p>
<h4>
<a name="AFTrackRestriction">Restrictions</a>
</h4>
<p>AFTrack can handle a maximum of 4096 tiles - so be sure not to
select more.</p>
<!-- *************************************************************************** -->
<h3>
<a name="KMZ">Google Earth Overlay (KMZ)</a>
</h3>
<p>
For creating Google Earth Overlays you have to select <b>Google
Earth Overlay (KMZ)</b> as format in atlas format selection dialog that
appears when starting a new atlas (menu <b>Atlas</b> entry <b>New
Atlas</b>).
</p>
<p>Using this atlas output format the following features are
ignored when creating atlases:</p>
<ul>
<li>Recreate/adjust map tiles (custom tile size and image format)</li>
</ul>
<h4>Warning</h4>
<p>
The Google Earth Overlay atlas format uses JPG images. The image size
depends on the selected maximum map size (see settings dialog). The
theoretical maximum map size for this atlas format is 25000. However
it is <b>strongly recommended not to set the maximum map size
higher than 10000</b> (this will result in a image with uncompressed size
about 286 MB).
</p>
<!-- *************************************************************************** -->
<h3>
<a name="Magellan">Creating Magellan RMP atlases</a>
</h3>
<p>
For creating atlases of Creating Garmin Custom Maps you have to select
<b>Magellan (RMP)</b> as format in atlas format selection dialog that
appears when starting a new atlas (menu <b>Atlas</b> entry <b>New
Atlas</b>).
</p>
<p>Using this atlas output format the following features are
ignored when creating atlases:</p>
<ul>
<li>Recreate/adjust map tiles (custom tile size and image format)</li>
</ul>
<p>Additionally some other limitations may apply, based on which
device and firmware version you are using. Mobile Atlas Creator does
not chek those limitations - therefore it may work or not if you are
using:</p>
<ul>
<li>An atlas with more than 5 maps.</li>
<li>Maps with a zoom level higher than 15.</li>
</ul>
<p>
The output format of an "atlas" for Magellan is one
<tt>RMP</tt>
file in the atlas directory. You can directly load this file in
Magellan VantagePoint or transfer it onto your device.
</p>
<!-- *************************************************************************** -->
<h3>
<a name="MAPLORER">Creating atlases for MAPLORER</a>
</h3>
<p>
For creating atlases compatible with <a href="http://maplorer.com">MAPLORER</a>
you have to select the <b>Maplorer atlas format</b> as format in atlas
format selection dialog that appears when starting a new atlas (menu <b>Atlas</b>
entry <b>New Atlas</b>). You have to choose <b>JPG image format</b>
under <b>Layer settings/tile format</b> (PNG is not supported by
Maplorer).
</p>
<p>
There are no specific limits on tile sizes and/or numbers; good
results for hiking/biking can be obtained using zoom level 15, custom
tile size of 1024x1024 (check <b>Recreate/adjust map tiles (CPU
intensive)</b> under <b>Layer settings</b>. For good performance, avoid
using too big or too many tiles (the maximum number of columns in
Maplorer is currently 26 ('A' to 'Z'), but it is preferable to use
less).
</p>
<p>
After defining the maps and layers (select region and click <b>Add
selection</b> under <b>Atlas Content)</b> for the atlas, click the button
Create Atlas. Once atlas download and creation has completed, all
necessary files belonging to the atlas can be found in the directory
<tt>atlases\[atlas name]_[current date and time]</tt>
.
</p>
<p>
To install the atlas on your device, simply connect it to your PC and
copy the content of the respective atlas subdirectory (i.e. all .jpg
and .pos files generated) to the Maplorer directory (the one which
contains maplorer.exe) on your device. Starting Maplorer on the device
will automatically read all tiles and create the index map. Detailed
instructions on making maps for Maplorer can be found at <a
href="http://maplorer.com">http://maplorer.com</a>
</p>
<!-- *************************************************************************** -->
<h3>
<a name="Maverick">Creating and using atlases with Maverick</a>
</h3>
<p>
For creating atlases compatible with Maverick you have to select <b>Maverick
atlas format</b> as format in atlas format selection dialog that appears
when starting a new atlas (menu <b>Atlas</b> entry <b>New Atlas</b>).<br>
As atlases for Maverick do not support all features provided by Mobile
Atlas Creator the following settings are ignored when creating atlases
for AndNav:
</p>
<ul>
<li>Recreate/adjust map tiles (custom tile size and image format)</li>
<li>Name of all layers and maps</li>
<li>Structure of the atlas (which maps belongs to which layer)</li>
</ul>
<p>
For further information how to use offline atlases with Maverick
please see <a href="http://help.codesector.com/MapsCache">Maverick
Online Help on Setting up offline maps</a>.
</p>
<!-- *************************************************************************** -->
<h3>
<a name="MGMaps">Creating and using atlases with MGMaps</a>
</h3>
<p>
For creating atlases compatible with MGMaps you have to select <b>MGMaps</b>
as format in atlas format selection dialog that appears when starting
a new atlas (menu <b>Atlas</b> entry <b>New Atlas</b>). Select a name
for the maps, this is important as you will use it to view the maps in
MGMaps.
</p>
<h4>How to copy the maps to your device</h4>
<ol>
<li>Create a folder named <tt>MGMapsCache</tt> in the root of you
device or memorycard
</li>
<li>Copy the created folders into this MGMapsCache folder so the
directory structure looks like:</li>
</ol>
<pre>
MGMapsCache
MGMapsCache\cache.conf
MGMapsCache\macos_10
MGMapsCache\macos_11
MGMapsCache\macos_12
MGMapsCache\macos_10\59_53.mgm
MGMapsCache\macos_11\150_106.mgm
MGMapsCache\macos_11\150_107.mgm
MGMapsCache\macos_11\151_106.mgm
MGMapsCache\macos_11\151_107.mgm
MGMapsCache\macos_12\365_213.mgm
MGMapsCache\macos_12\365_214.mgm
MGMapsCache\macos_12\366_213.mgm
MGMapsCache\macos_12\366_214.mgm
</pre>
<h4>How to set up MGMaps to use the maps</h4>
<ol>
<li>Select Settings/Map/Stored Maps, Click on the two boxes
labelled Stored Maps and Offline Mode. The first box enables the use
of stored map mode. The second box prohibits the use of the mobile
phones Internet connect to download live maps. You can leave this
unchecked if you want. stored maps folder: now tell MGMaps where you
have stored the map tile files. in my case SDCard/MGMapsCache.</li>
<li>Select Settings/Map/Map types, select options/add custom
map,in map type name enter the name of the map you created using MAC
in my case macos, map type url you can leave blank, select
ok/options/save MGMaps will then apply the settings and display your
created map.</li>
</ol>
<h4>Warning</h4>
<p>Avoid using names native to MGMaps such as google, each name
used must be defined as a custom map so the directory structure below
must have macos,macroad and macsat defined as custom map types.</p>
<pre>
MGMapsCache MGMapsCache\cache.conf MGMapsCache\macos_10
MGMapsCache\macos_11 MGMapsCache\macroad_11 MGMapsCache\macsat_11
MGMapsCache\macos_12 MGMapsCache\macroad_12 MGMapsCache\macsat_12
</pre>
<!-- *************************************************************************** -->
<h3>
<a name="MTE">Creating and using atlases with Mobile Trail
Explorer (MTE)</a>
</h3>
<p>
For creating atlases compatible with Mobile Trail Explorer you have to
select <b>Mobile Trail Explorer Cache</b> as format in atlas format
selection dialog that appears when starting a new atlas (menu <b>Atlas</b>
entry <b>New Atlas</b>).<br> If a map source uses an image format
different to PNG the tiles will be automatically converted to the PNG
format.<br> The output is one
<tt>MTEFileCache</tt>
file per atlas which contains all maps. An existing cache file can not
be updated. If you want to add maps to an existing
<tt>MTEFileCache</tt>
please use the atlas format <b>Mobile Trail Explorer</b> which creates
a file structure identical to JTileDownloader and then process the
maps using <a
href="http://code.google.com/p/mobile-trail-explorer/wiki/CacheCreator">MTE
CacheCreator</a>.<br> As atlases for Mobile Trail Explorer does not
support all features provided by Mobile Atlas Creator the following
settings are ignored when creating atlases for Mobile Trail Explorer:
</p>
<ul>
<li>Recreate/adjust map tiles (custom tile size and image format)</li>
<li>Name of all layers and maps</li>
<li>Structure of the atlas (which maps belongs to which layer)</li>
</ul>
<!-- *************************************************************************** -->
<h3>
<a name="NaviComputer">Creating atlases for NaviComputer</a>
</h3>
<p>
For creating atlases, compatible with NaviComputer, you have to select
<b>NaviComputer (NMAP)</b> as format in atlas format selection dialog
that appears when starting a new atlas (menu <b>Atlas</b> entry <b>New
Atlas</b>).<br> After defining the maps and layers for the atlas to
be created, start atlas download and creation via the button <b>Create
Atlas</b>. Once download and creation has completed, the generated file
with the extension nmap can be found in the MOBAC output directory.
This *.nmap-file is the required input file for NaviComputer.
</p>
<!-- *************************************************************************** -->
<h3>
<a name="nfComPass">Creating atlases for nfComPass</a>
</h3>
<p>
For creating atlases, compatible with <a
href="http://www.navifriends.com/phpbbForum/viewtopic.php?f=3&t=17004">nfComPass</a>,
you have to click <b>Atlas -> New Atlas</b>, select <b>nfComPass</b>
and give your Atlas a name.<br> By default atlases with a
tilesize of 64x64 are created (recommended). For different tile sizes
check <b>Recreate/adjust map tiles (CPU intensive)</b> under Layer
settings. Set Tileformat can not be changed - it is always png. Maybe
you must tryout, what is the best tilesize for your device. Choose
your layer and zoomlevels and click <b>Add selection</b>. Then click <b>Create
atlas</b>. Once download and creation has completed, the generated
folders can be found in the MOBAC output directory. You must copy the
data from the
<tt>nfComPass.dat</tt>
to your nfComPass.dat and fill in the path to your mapdirectory. After
that, copy the folder(s) to your device. If it is possible, you should
not copy the files with Active Sync to your device.
</p>
<!-- *************************************************************************** -->
<h3>
<a name="OruxMaps">Creating OruxMaps atlases</a>
</h3>
<p>
For creating atlases compatible with <a href="http://www.oruxmaps.com">OruxMaps</a>
as format you have to select <b>OruxMaps</b> as format in atlas format
selection dialog that appears when starting a new atlas (menu <b>Atlas</b>
entry <b>New Atlas</b>).
</p>
<p>Using this atlas output format the following features are
ignored when creating atlases:</p>
<ul>
<li>Layer settings, custom tile size. OruxMaps always uses
512x512 tile size. You can select the tile format (PNG or JPEG). If
you do not select any, default value is JPEG - quality 90.</li>
</ul>
<p>The output format of an "atlas" for OruxMaps is one or more map
directories in the atlas directory. You have to copy those maps onto
your device (default directory: /oruxmaps/mapfiles/).</p>
<!-- *************************************************************************** -->
<h3>
<a name="OSMAND">Creating atlases for OSMAND</a>
</h3>
<p>
For creating atlases compatible with OSMAND you have to select <b>OSMAND
tile storage</b> or <b>OSMAND SQlite</b> as format in atlas format
selection dialog that appears when starting a new atlas (menu <b>Atlas</b>
entry <b>New Atlas</b>).<br> As atlases for OSMAND do not support
all features provided by Mobile Atlas Creator the following settings
are ignored when creating atlases for OSMAND:
</p>
<ul>
<li>Change height or width of the map tiles</li>
<li>Name of all layers and maps</li>
<li>Structure of the atlas (which maps belongs to which layer)</li>
</ul>
<!-- *************************************************************************** -->
<h3>
<a name="Osmdroid">Creating atlases for Osmdroid</a>
</h3>
<p>
For creating atlases compatible with Osmdroid you have to select
either <b>Osmdroid ZIP</b>, <b>Osmdroid SQLite</b> or <b>Osmdroid
GEMF</b> as format in atlas format selection dialog that appears when
starting a new atlas (menu <b>Atlas</b> entry <b>New Atlas</b>).<br>
The mentioned three formats are "single file" atlases. One
of the other possible atlas formats might also be acceptable for
Osmdroid. Also, there is other software that is able to deal with GEMF
archives.<br> As atlases for Osmdroid do not support all features
provided by Mobile Atlas Creator the following settings are ignored
when creating atlases for Osmdroid:
</p>
<ul>
<li>Change height or width of the map tiles</li>
<li>Name of all layers and maps</li>
<li>Structure of the atlas (which maps belongs to which layer)</li>
</ul>
<!-- *************************************************************************** -->
<h3>
<a name="OSMTracker">Creating atlases for OSMTracker</a>
</h3>
<p>
For creating atlases compatible with OSMTracker you have to select <b>OSMTracker
tile storage</b> as format in atlas format selection dialog that appears
when starting a new atlas (menu <b>Atlas</b> entry <b>New Atlas</b>).<br>
As atlases for OSMTracker do not support all features provided by
Mobile Atlas Creator the following settings are ignored when creating
atlases for OSMTracker:
</p>
<ul>
<li>Change height or width of the map tiles</li>
<li>Name of all layers and maps</li>
<li>Structure of the atlas (which maps belongs to which layer)</li>
</ul>
<!-- *************************************************************************** -->
<h3>
<a name="Ozi">Creating and using atlases with OziExplorer / large
PNG image export</a>
</h3>
<p>
For creating atlases compatible with OziExplorer you have to select <b>OziExplorer
(PNG & MAP)</b> as format in atlas format selection dialog that
appears when starting a new atlas (menu <b>Atlas</b> entry <b>New
Atlas</b>).
</p>
<h4>
<a name="OziRestriction">Restrictions</a>
</h4>
<p>As OziExplorer does not support tiled maps some features are
ignored when creating atlases in this format:</p>
<ul>
<li>Image output format is fix: 24bit PNG</li>
<li>Recreate/adjust map tiles custom tile is ignored</li>
</ul>
<p>
The output format of an "atlas" for OziExplorer is one subdirectory
per layer and within this subdirectory one
<tt>PNG</tt>
image and one
<tt>MAP</tt>
file per defined map. For opening a map in OziExplorer select the menu
<b>File</b> → <b>Load from File</b> → <b>Load from MAP
file</b>, browse to the layer directory of the created atlas and select
the MAP file.
</p>
<p>If you are only interested in the map image you can safely
delete the created map file.</p>
<h4>
<a name="OziWarning">Warning</a>
</h4>
<p>Mobile Atlas Creator uses a highly sophisticated and optimized
algorithm for creating the PNG files for OziExplorer use. This
algorithm allows to create very large maps images at low memory usage.
OziExplorer and most image viewers do not use such sophisticated
algorithms which can lead to the situation that you can create very
large map images - but OziExplorer and other image viewers are not
able to open the image.</p>
<!-- *************************************************************************** -->
<h3>
<a name="PathAway">Creating atlases for PathAway</a>
</h3>
<p>
For creating atlases compatible with PathAway you have to select <b>PathAway
tile cache</b> as format in atlas format selection dialog that appears
when starting a new atlas (menu <b>Atlas</b> entry <b>New Atlas</b>).
<br> As atlases for PathAway do not support all features provided
by Mobile Atlas Creator the following restrictions apply when creating
atlases for PathAway:
</p>
<ul>
<li>The maximum zoom level is 16 - higher zoom levels are not
possible with this atlas format</li>
<li>Tile width and width can not be changed (settings will be
ignored)</li>
<li>Name of all layers and maps is ignored</li>
<li>Structure of the atlas is ignored (which maps belongs to
which layer)</li>
</ul>
<!-- *************************************************************************** -->
<h3>
<a name="RMaps">Creating and using atlases with RMaps</a>
</h3>
<p>
For creating offline atlases compatible with <a
href="http://robertdeveloper.blogspot.com/search/label/rmaps">RMaps</a>
(Android application) you have to select <b>RMaps SQLite</b> as format
in atlas format selection dialog that appears when starting a new
atlas (menu <b>Atlas</b> entry <b>New Atlas</b>).<br> The atlas
format RMaps does not support all features provided by Mobile Atlas
Creator the following settings can not be used or are ignored when
creating atlases using this output format:
</p>
<ul>
<li>Recreate/adjust map tiles with custom tile size (height and
width have to be 256)</li>
<li>Name of all layers and maps</li>
<li>Structure of the atlas (which maps belongs to which layer)</li>
<li>Atlases created after another are merged into one Database
named <tt>[AtlasName] atlas.sqlitedb</tt> which is located in the
atlas output directory.
</li>
</ul>
<!-- *************************************************************************** -->
<h3>
<a name="SportsTracker">[Nokia] Sports Tracker</a>
</h3>
<p>
For creating atlases compatible with <a
href="http://www.sports-tracker.com">Sports Tracker(ST)</a> you have
to select <b>Sports Tracker</b> (NOT GPS Sportstracker) as format in
atlas format selection dialog that appears when starting a new atlas
(menu <b>Atlas</b> entry <b>New Atlas</b>).
</p>
<p>
Do not select <b>Recreate/adjust map tiles</b>.
</p>
<p>Maximum Zoomlevel of Sports Tracker is 17, default is 13.</p>
<p>Copy the created atlas (the whole folder) into the following
folder of youre phone (depending of the Sports Tracker version):</p>
<ul>
<li>Sports Tracker 1.76: <tt>E:\system\data\Maps\Street\</tt></li>
<li>Sports Tracker 2.x: <tt>E:\system\data\Maps\Street\</tt></li>
<li>Sports Tracker 3.x: <tt>E:\system\data\STMaps\Street\</tt></li>
</ul>
<p>For changing the zoom level inside Storts Tracker press 5 to
zoom in and 0 to zoom out.</p>
<!-- *************************************************************************** -->
<h3>
<a name="TTQV">Creating and using atlases with Touratech QV /
large PNG image export</a>
</h3>
<p>
For creating atlases compatible with Touratech QV you have to select <b>Touratech
QV</b> as format in atlas format selection dialog that appears when
starting a new atlas (menu <b>Atlas</b> entry <b>New Atlas</b>).
</p>
<h4>
<a name="TTQVRestriction">Restrictions</a>
</h4>
<p>As Touratech QV does not support tiled maps some features are
ignored when creating atlases in this format:</p>
<ul>
<li>Image output format is fix: 24bit PNG</li>
<li>Recreate/adjust map tiles custom tile is ignored</li>
</ul>
<p>
The output format of an "atlas" for Touratech QV is one subdirectory
per layer and within this subdirectory one
<tt>PNG</tt>
image and one
<tt>CAL</tt>
file per defined map.
</p>
<p>If you are only interested in the map image you can safely
delete the created cal file.</p>
<h4>
<a name="TTQVWarning">Warning</a>
</h4>
<p>Mobile Atlas Creator uses a highly sophisticated and optimized
algorithm for creating the PNG files for Touratech QV use. This
algorithm allows to create very large maps images at low memory usage.
Touratech QV and most image viewers do not use such sophisticated
algorithms which can lead to the situation that you can create very
large map images - but Touratech QV and other image viewers are not
able to open the image.</p>
<!-- *************************************************************************** -->
<h3>
<a name="TomTomRaster">Creating atlases using TomTom Raster format</a>
</h3>
<p>TBD</p>
<!-- *************************************************************************** -->
<h3>
<a name="TrekBuddy">Creating and using atlases with TrekBuddy</a>
</h3>
<p>
For creating atlases compatible with TrekBuddy you have to select <b>TrekBuddy
tared atlas</b> or <b>TrekBuddy untared atlas</b> as format in atlas
format selection dialog that appears when starting a new atlas (menu <b>Atlas</b>
entry <b>New Atlas</b>).
</p>
<p>
After defining the maps and layers for the atlas to be created start
atlas download and creation via the button <b>Create Atlas</b>. Once
atlas download and creation has completed all necessary files
belonging to the atlas can be found in the directory
<tt>atlases\[atlas name]_[current date and time]</tt>
.
</p>
<p>
The atlas itself consists of the atlas startup file
<tt>cr.tar</tt>
(tar format) or
<tt>cr.tba</tt>
(regular/untared format) and the subdirectories containing the
different maps of the atlas. For using the atlas with TrekBuddy copy
the whole directory onto your J2ME device. Then use the <b>Load
Atlas</b> function of TrekBuddy and open
<tt>cr.tar</tt>
/
<tt>cr.tba</tt>
(in the atlas root directory).
</p>
<!-- *************************************************************************** -->
<h3>
<a name="TwoNav">Creating and using atlases with TwoNav &
CompeGPS Land/Air</a>
</h3>
<p>
To create atlases compatible with TwoNav software you have to select <b>TwoNav
(RMAP)</b> as format in atlas format selection dialog that appears when
starting a new atlas (menu <b>Atlas</b> entry <b>New Atlas</b>).
Atlases created for TwoNav are stored in a format called rmap. It's a
binary format that holds the same map data stored at different
resolutions - in order to make zooming in and out on low performance
mobile devices fast and efficient. However, this causes some
restrictions which have to be taken into account:
</p>
<ul>
<li>Each map within a layer has to have the same geographical
bounds.</li>
<li>There only can be one map in a layer with a given zoom level</li>
</ul>
<p>If there are several layers in one atlas, each layer will be
stored as a separate rmap file.</p>
<p>The easiest way to create a correct atlas content is: first
select the appropriate grid zoom (combobox next to the zoom slider),
then pick zoom levels from the selected grid zoom up to the zoom level
of the desired most detailed level, and finally add a selection to the
Atlas content by clicking on the "Add selection" button.</p>
<p>Rmap format also requires no gaps in a zoom level range from the
maximum to the minimum selected zoom level. If there are missing zoom
levels, they will be created internally by shrinking the existing
downloaded tiles. If the missing zoom levels contain a lot of tiles,
this operation could take a while.</p>
<p>
Finally copy the
<tt>layer.rmap</tt>
file from the
<tt>atlases\[atlas name]_[current date and time]</tt>
folder to your TwoNav
<tt>maps</tt>
folder.
</p>
<p>As TwoNav does not support all available features provided my
MOBAC, some features can not be used when creating atlases in this
format:</p>
<ul>
<li>Custom tile height and width (is ignored for TwoNav RMP
atlases)</li>
<li>Custom tile format: Only JPEG formats are allowed</li>
</ul>
<!-- *************************************************************************** -->
<h3>
<a name="Viewranger">Creating and using atlases with Viewranger</a>
</h3>
<p>
For creating atlases compatible with <a
href="http://www.viewranger.com/">Viewranger(VR)</a> you have to
select <b>Viewranger</b> as format in atlas format selection dialog
that appears when starting a new atlas (menu <b>Atlas</b> entry <b>New
Atlas</b>).
</p>
<p>Maximum Zoomlevel of Viewranger is 18, minimum is 3.</p>
<p>After creating your atlas the folder structure looks like:</p>
<ul>
<li><tt>Mobile Atlas Creator
1.9\atlases\VR_2012-03-28_154944\OSM\13\4308</tt></li>
<li><tt>Mobile Atlas Creator
1.9\atlases\VR_2012-03-28_154944\OSM\14\43</tt></li>
<li><tt>Mobile Atlas Creator
1.9\atlases\VR_2012-03-28_154944\google\13\4308</tt></li>
<li><tt>Mobile Atlas Creator
1.9\atlases\VR_2012-03-28_154944\google\14\43</tt></li>
</ul>
<p>
Now we have to <a
href="http://support.viewranger.com/wikihelp/index.php/Map_cache_structure">
Create a Folder Structure on the Device:</a>
</p>
<P>
If you youre VR Folder is on E: it is on Symbian located in
<tt>E:/ViewRanger/MapCache/_PAlbTN/</tt>
</P>
<P>In this folder create following Subfolders, if not already
present:</P>
<P>84,85,87,88,89,129</P>
<P>
e.g.
<tt>/ViewRanger/MapCache/_PAlbTN/84</tt>
</p>
<p>Copy the content of "OSM" into 84, "google" into 85 and so on.</p>
<p>
Now it looks like:
<tt>E:/ViewRanger/MapCache/_PAlbTN/13/4308/2687</tt>