View previous topic :: View next topic |
Author |
Message |
MEH
Joined: 24 Aug 2008 Posts: 31 Location: Portland, OR USA
|
Posted: Wed Apr 13, 2011 2:48 am Post subject: Use 7zip to make a tarred atlas? |
|
|
I have created a TIF image of an area and calibrated it with OziExplorer.
Then rescaled the TIF to make several zoom layers and calibrated those too.
Then I used TBcutter to generate the set of map pieces.
So, I think I have all the pieces to make a tarred atlas.
But I'm having trouble with UNIX tar utility for Windows. I'm not too good with commandline utilities.
Do you think I can use 7zip to make a proper tar archive?
I've tried a few times but have failed to make one that will work with Trekbuddy. Always seems to be missing the right files in order to work correctly.
Thanks for any guidance.
|
|
Back to top |
|
 |
Celda
Joined: 03 Jun 2008 Posts: 320 Location: CZ
|
Posted: Wed Apr 13, 2011 8:05 am Post subject: |
|
|
Try jTBtar !
http://www.trekbuddy.net/forum/viewtopic.php?t=3170
_________________ Čelda
Gigabyte GSmart G1355 (dual SIM, Android 2.3.4 Gingerbread)
Till 5/2012:
mobile: SAMSUNG SGH D880 Duos (dual SIM)
GPS: Qstarz BT-1200 Bluetooth Solar Travel Recorder (MTK chipset) |
|
Back to top |
|
 |
Freddie
Joined: 11 Jun 2008 Posts: 71
|
Posted: Wed Apr 13, 2011 4:53 pm Post subject: |
|
|
Extract "exe" file into atlas folder and double-click.
Description: |
|
Download |
Filename: |
atlas_tar.zip |
Filesize: |
77.95 KB |
Downloaded: |
49 Time(s) |
_________________ K530 > K770 > J105 > DG300 > Huawei P8 Lite & PENTAGRAM P 3101 |
|
Back to top |
|
 |
MEH
Joined: 24 Aug 2008 Posts: 31 Location: Portland, OR USA
|
Posted: Thu Apr 14, 2011 5:36 am Post subject: |
|
|
jTBtar worked great!
Thank you very much.
|
|
Back to top |
|
 |
tbuser1
Joined: 29 Mar 2011 Posts: 26
|
Posted: Sun May 22, 2011 8:51 am Post subject: Atlas from Map with 7Zip --> Windows cmd |
|
|
Atlas Creation from Maps
If you have got tarred Maps you can combine them to an Atlas. For that you only need an additional tar-file, which can be created easily. The following cmd-File achieves that under Windows by using 7zip which is assumed to be located in C:\cmd. Copying the maps-directories in the atlas-directory, copying the cmd-file into the atlas directory and starting it worked fine for me...
Have a look at the cmd-File-Contents. It first extracts the map-Files from the map-tar-files, then creates the tba-file, combines all in the atlas-tar-file and then deletes the tba- and all map-files (BE CAREFUL if you have *.tba or *.map files of your own, try it at your own risk...):
for /R %%i in (*.tar) do (c:\cmd\7za x "%%i" *.map && move *.map "%%~pi")
pause
cls
echo Atlas 1.0>cr.tba
c:\cmd\7za a -r -ttar cr.tar cr.tba *.map
pause
cls
for /R %%i in (*.map) do del "%%i"
pause
del cr.tba
|
|
Back to top |
|
 |
|