TerraSync by hand using SVN: Difference between revisions

From FlightGear wiki
Jump to navigation Jump to search
(how to download scenery manually using svn)
 
m (cat: Scenery)
Line 1: Line 1:
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:
Line 20: Line 20:


To see what data is available, you can view the Flightgear TerraSync Server directory using [http://terrascenery.googlecode.com/svn/trunk/data/Scenery/ this] link.
To see what data is available, you can view the Flightgear TerraSync Server directory using [http://terrascenery.googlecode.com/svn/trunk/data/Scenery/ this] link.
[[Category:Scenery]]

Revision as of 04:46, 8 February 2014

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:

cd /path/where/to/store/the/Scenery

Then set up the local svn repository and download the Airports and Models:

svn checkout --non-recursive http://terrascenery.googlecode.com/svn/trunk/data/Scenery/
svn update Scenery/Airports
svn update Scenery/Models
svn update --non-recursive Scenery/Objects
svn update --non-recursive Scenery/Terrain

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

svn update Scenery/Objects/e000n40
svn update Scenery/Terrain/e000n40

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