TerraSync by hand using SVN: Difference between revisions

From FlightGear wiki
Jump to navigation Jump to search
(add command to make new directory and fix urls for new terrasync server...)
(corrected the update commands and cleaned up a little more...)
Line 3: Line 3:
If you want to manually download FlightGear World Scenery 2.0 from the TerraSync repository, you can do so by using the command line subversion client.
If you want to manually download FlightGear World Scenery 2.0 from the TerraSync repository, you can do so by using the command line subversion client.


First of all you have to make the directory where to store the scenery in and change into it:
First of all you have to make the directory where to store the scenery in and change into it. Then set up the local svn repository and download the Airports and Models


  <nowiki>
  <nowiki>
mkdir /path/where/to/store/the/Scenery
mkdir /path/to/store/the/Scenery
cd /path/where/to/store/the/Scenery</nowiki>
cd /path/to/store/the/Scenery
svn checkout --non-recursive http://ns334561.ip-5-196-65.eu:8888/trunk/data/Scenery/ .  [NOTE: make sure you get the trailing dot!]
svn update Airports
svn update Models
svn update --non-recursive Objects
svn update --non-recursive Terrain</nowiki>


Then set up the local svn repository and download the Airports and Models:
Finally you can get parts of the scenery using these commands:
  <nowiki>
  <nowiki>
svn checkout --non-recursive http://ns334561.ip-5-196-65.eu:8888/trunk/data/Scenery/
svn update Objects/e000n40
svn update Scenery/Airports
svn update Terrain/e000n40</nowiki>
svn update Scenery/Models
svn update --non-recursive Scenery/Objects
svn update --non-recursive Scenery/Terrain</nowiki>


Finally you can get parts of the scenery using these commands:
The main thing is to be in the directory you created when you use these commands.
 
Once you have what you want, you can easily update it at any time by using the following commands:
  <nowiki>
  <nowiki>
svn update Scenery/Objects/e000n40
cd /path/to/store/the/Scenery
svn update Scenery/Terrain/e000n40</nowiki>
svn update</nowiki>


To see what data is available, you can view the Flightgear TerraSync Server directory using [http://ns334561.ip-5-196-65.eu:8888/trunk/data/Scenery/ this] link.
To see what data is available, you can view the Flightgear TerraSync Server directory using [http://ns334561.ip-5-196-65.eu:8888/trunk/data/Scenery/ this] link.


[[Category:Scenery]]
[[Category:Scenery]]

Revision as of 19:25, 18 April 2016

This article or section contains out-of-date information

Please help improve this article by updating it. There may be additional information on the talk page.

If you want to manually download FlightGear World Scenery 2.0 from the TerraSync repository, you can do so by using the command line subversion client.

First of all you have to make the directory where to store the scenery in and change into it. Then set up the local svn repository and download the Airports and Models

mkdir /path/to/store/the/Scenery
cd /path/to/store/the/Scenery
svn checkout --non-recursive http://ns334561.ip-5-196-65.eu:8888/trunk/data/Scenery/ .  [NOTE: make sure you get the trailing dot!]
svn update Airports
svn update Models
svn update --non-recursive Objects
svn update --non-recursive Terrain

Finally you can get parts of the scenery using these commands:

svn update Objects/e000n40
svn update Terrain/e000n40

The main thing is to be in the directory you created when you use these commands.

Once you have what you want, you can easily update it at any time by using the following commands:

cd /path/to/store/the/Scenery
svn update

To see what data is available, you can view the Flightgear TerraSync Server directory using this link.