install Scripts

Support, HOWTOs, information, development, and everything related to obtain scenery via Github with terraGIT
User avatar
IAHM-COL
Posts: 6409
Joined: Sat Sep 12, 2015 3:43 pm
Location: Homey, NV (KXTA) - U.S.A
Contact:

install Scripts

Postby IAHM-COL » Wed May 18, 2016 1:45 am

Hi All

Although figuring out what install scripts are available in terraGIT (or which ones become available) is as simple as just looking in the install directory
https://github.com/FGMEMBERS-TERRAGIT/terraGIT/tree/master/install

I wanted to list some few here

World
Self Explanatory. Caution: you need 260+GB hard drive available, and the bandwith.

Code: Select all

install/World


Tile
Manages any particular world tile, as seen in
http://ns334561.ip-5-196-65.eu/~fgscenery/WS2.0/scenery-2.0.1.html

Code: Select all

install/tile w080n20


lat-xNN
Manages to install a full latitude (all tiles in the world) whose south border is the coordinate NN.
Example, the following code install every tile that its south border is n30

Code: Select all

install/lat-n30


lon-xNNN
Manages to install a full longitude (all tiles in the world) whose west border is the coordinate NN.
Example, the following code install every tile that its west border is w080

Code: Select all

install/lon-w080



Country Specific
This is self explanatory

Code: Select all

install/Japan



State Specific
This applies for the USA. It is self Explanatory (to be completed)

Code: Select all

install/USA.KS


Continent Specific

Code: Select all

install/SouthAmerica



Update Scripts>?

These are the same as install. All you need to do is pull before using the install script again. Example, assume you already installed the World, but want to update Norway

Code: Select all

git pull
install/Norway


Deinstall Scripts

For each install script, there is a deinstall script that will delete the files for a group of tiles in your computer. Some of your hard drive will be released by doing so. Keep in mind that deinstall does not attempt to maintain a tile if you installed by other methods.

Example

Code: Select all

install/World
deinstall/Artic
deinstall/Antartic
deinstall/America


Its an effective way to obtain all the World, except the polar circles and all America


I hope this clarifies.

Feel free to ask for questions below

IH-COL

Deinstall scripts will facilitate the removal of areas of the World you are not interested, ee
https://raw.githubusercontent.com/IAHM-COL/gpg-pubkey/master/pubkey.asc

R.M.S.
If we gave everybody in the World free software today, but we failed to teach them about the four freedoms, five years from now, would they still have it?

NC-687
Posts: 10
Joined: Sat Apr 29, 2017 11:12 am

Re: install Scripts

Postby NC-687 » Wed May 03, 2017 1:21 am

Hi guys, I have a problem with terraGIT, I get the error that a submodule cannot checkout, in this case,w090n10, when I open the file, it is empty, have tried deleting it,renaming it,updating it,all to no avail.
NC-687.

User avatar
IAHM-COL
Posts: 6409
Joined: Sat Sep 12, 2015 3:43 pm
Location: Homey, NV (KXTA) - U.S.A
Contact:

Re: install Scripts

Postby IAHM-COL » Wed May 03, 2017 2:36 am

NC-687 wrote:Hi guys, I have a problem with terraGIT, I get the error that a submodule cannot checkout, in this case,w090n10, when I open the file, it is empty, have tried deleting it,renaming it,updating it,all to no avail.
NC-687.


Which one Terrain/w090n10 or Objects/w090n10? or both?
https://raw.githubusercontent.com/IAHM-COL/gpg-pubkey/master/pubkey.asc

R.M.S.
If we gave everybody in the World free software today, but we failed to teach them about the four freedoms, five years from now, would they still have it?

NC-687
Posts: 10
Joined: Sat Apr 29, 2017 11:12 am

Re: install Scripts

Postby NC-687 » Wed May 03, 2017 6:12 am

Yo! so far,only terrain ,I had other instances where it stalled with the error that a file was already there and not empty,so I renamed the original one and terraGIT worked again, so I don't know what else is wrong because it just stops at an error!
NC-687

NC-687
Posts: 10
Joined: Sat Apr 29, 2017 11:12 am

Re: install Scripts

Postby NC-687 » Wed May 03, 2017 6:14 am

ah, I have tried a new git pull and update which also stopped at the sam place,

NC-687
Posts: 10
Joined: Sat Apr 29, 2017 11:12 am

Re: install Scripts

Postby NC-687 » Wed May 03, 2017 1:35 pm

nc-687@Flightgear ~ $ cd /home/nc-687/terraGIT
nc-687@Flightgear ~/terraGIT $ install/tile w090n10
fatal: reference is not a tree: fe55c3d685533e18bc7f3ec940c84a0ef7cd719d
Unable to checkout 'fe55c3d685533e18bc7f3ec940c84a0ef7cd719d' in submodule path 'Terrain/w090n10'

This is what I have in my terminal screen when I tried to install just the tile that causes the install to hang, it is where the install/World also hangs up!

User avatar
IAHM-COL
Posts: 6409
Joined: Sat Sep 12, 2015 3:43 pm
Location: Homey, NV (KXTA) - U.S.A
Contact:

Re: install Scripts

Postby IAHM-COL » Wed May 03, 2017 2:12 pm

try

remove the directory Terrain/w090n10 manually
then

Code: Select all

git checkout origin master Terrain/w090n10
install/tile w090n10
https://raw.githubusercontent.com/IAHM-COL/gpg-pubkey/master/pubkey.asc

R.M.S.
If we gave everybody in the World free software today, but we failed to teach them about the four freedoms, five years from now, would they still have it?

NC-687
Posts: 10
Joined: Sat Apr 29, 2017 11:12 am

Re: install Scripts

Postby NC-687 » Wed May 03, 2017 9:12 pm

nc-687@Flightgear ~ $ cd /home/nc-687/terraGIT
nc-687@Flightgear ~/terraGIT $ git checkout origin master Terrain/w090n10
error: pathspec 'master' did not match any file(s) known to git.
nc-687@Flightgear ~/terraGIT $ install/tile w090n10

User avatar
IAHM-COL
Posts: 6409
Joined: Sat Sep 12, 2015 3:43 pm
Location: Homey, NV (KXTA) - U.S.A
Contact:

Re: install Scripts

Postby IAHM-COL » Wed May 03, 2017 9:50 pm

my bad....

NOTICE the slash on

checkout origin/master

I omitted before

IAHM-COL wrote:try

remove the directory Terrain/w090n10 manually
then

Code: Select all

git checkout origin/master Terrain/w090n10
install/tile w090n10
https://raw.githubusercontent.com/IAHM-COL/gpg-pubkey/master/pubkey.asc

R.M.S.
If we gave everybody in the World free software today, but we failed to teach them about the four freedoms, five years from now, would they still have it?

NC-687
Posts: 10
Joined: Sat Apr 29, 2017 11:12 am

Re: install Scripts

Postby NC-687 » Thu May 04, 2017 3:34 am

No problem for the error :) I appreciate you taking the time to help me out here !


Return to “terraGIT”

Who is online

Users browsing this forum: No registered users and 8 guests