Narita International Airport (RJAA)

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

Narita International Airport (RJAA)

Postby IAHM-COL » Tue Apr 19, 2016 4:17 pm

:mrgreen: :mrgreen:

Narita Airport in Tokyo

Hi SH-M
Outstanding job in Tokyo. I love it. Thanks for all the efforts. (and thanks for giving me push access)

Now. Onto the comments and some request corrections

1. HighQuality branch
Great news. There is no effect on fps with the larger resolution texture. It works great. I think you can go ahead and merge into master, and deal only with 1 version here. You make the last call, but again, the HighQuality branch is much better, and the scenery is perfectly fine in low spec computers

2. Windows and *NIX namespaces
This is kind of very important thing. *NIX is caps sensitive. As in JET6.png is not the same file as jet6.png. When you have this difference between your texture and your ac.file then in Windows looks good, but as soon as you go to MaCOSx or any linux thing go twisted, and errors pop in the console like there's no tomorrow.
Also, it is good computing practice (again, a *NIX thing) NOT to include whitespaces in file names, that is, preffer t1_pc.png over 't1 pc.png'
I fixed these for you here
https://github.com/SH-M/RJAA-fg-CustomScenery/commit/8b779d557b8ba8c53201a12f56c40681cf78983a

3. Backup directory (tell D-ECHO too :D)
Git is a great Source code management tool that stores the history of all your files in blobs. You don't need to ask it to also track history of backup files -- that's redudant. Anytime you need a backup file from a previous time in your repo, you just ask git to read the file as it was on any given commit as in

Code: Select all

git checkout a4493df my_old_version


That will restore the file to "how it was" on the commit a4493df, effectively being a "backup". You can restore single files or even full directories. or full repos: as in

Code: Select all

git checkout -b backup a4493df


That command creates a branch "backup" and there it restores your repo, as it was on a4493df. Regardless of this commit being 1 day ago or 10years away.

Sure. This will work until the day someone decides to trash history (not pun intended, I've seen it happening)

Thus,
I removed the backup directory with historical terrain (as it is unnecesary!)

https://github.com/SH-M/RJAA-fg-CustomScenery/commit/dfcb33f5a697b2b5dd5ac7e8eddf97da9c057ce8

4. The point you were expecting: the Elevation problem

You are going to need to pass this info to D-eCHO as well.

It is my opinion that the buildings are floating because the terrain was generated without a terrain profile. Everything thus got flattened with an elevation of zero.(that's bad). Need to get the SRTM for elevation (the correct ones), and reconstruct.
after that, if buildings are still floating, a solution needs to be found.

Image

In any case I created a branch named elevTest.
Here I merged master into HighQuality (bringing the new Elevation profile to HighQuality), and then putting the scenery objects at 0.00 feet high. As I suspected, they now sit cute on the ground level, indicating that the elevation profile was not encoded when terragear was run.

https://github.com/SH-M/RJAA-fg-CustomScenery/commit/fac0fab5e1f5a60b3f0858fe113c5a412cfc84d2

So, since I suspect that, I suggest you communicate to D-ECHO to please verify the terrain build :D


When he does, if buildings still float, figuring out the correct elevation is easy.

Best,
IH-COL
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?

User avatar
SHM
Posts: 1960
Joined: Mon Sep 14, 2015 3:32 pm
Location: India

Re: Narita International Airport (RJAA)

Postby SHM » Tue Apr 19, 2016 4:28 pm

Ok Roger will talk with D-ECHO.

And thanks for your effort.

Having never used any UNIX based OS (Windows user since birth) I didn't know about the caps-sensitive issue, I'll make sure I follow the tips on my next build.

SHM
FG Pilot (2011-2018)
Prepar3d (2015 - 2023)
MSFS2020 (2020 - )
Image

D-ECHO
Posts: 436
Joined: Sat Jan 30, 2016 10:55 am

Re: Narita International Airport (RJAA)

Postby D-ECHO » Tue Apr 19, 2016 5:41 pm

Removed out of this toxic forum.
Last edited by D-ECHO on Tue Dec 31, 2019 3:00 pm, edited 1 time in total.

User avatar
SHM
Posts: 1960
Joined: Mon Sep 14, 2015 3:32 pm
Location: India

Re: Narita International Airport (RJAA)

Postby SHM » Tue Apr 19, 2016 6:11 pm

Decided to repost them here since the topic is without any pictures of it.

Image

Image

Image

Image
FG Pilot (2011-2018)
Prepar3d (2015 - 2023)
MSFS2020 (2020 - )
Image

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

Re: Narita International Airport (RJAA)

Postby IAHM-COL » Tue Apr 19, 2016 6:19 pm

Ok
@D-ECHO

Lets try this

Use the SRTM that I just pushed into the repo on "terrrain" branch as the Elevation source

https://github.com/SH-M/RJAA-fg-CustomScenery/tree/terrain

https://github.com/SH-M/RJAA-fg-CustomScenery/tree/terrain/source/work/e140n30

This needs to be added to your "work" path, and maybe redirect the --dem-path=SRTM-3

Let's see if it works.
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?

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

Re: Narita International Airport (RJAA)

Postby IAHM-COL » Sun Apr 24, 2016 10:40 pm

Hi @ALL

Ok. I rebuilt the terrain of Narita, now without failures on elevation, and buildings, just as expected sit normally on the ground without further adjustment.
I merged the new terrain in both master and HighQuality branches on RJAA repository.

Also, as you can read on the other thread, I already terraGITted this scenery

IH-COL
viewtopic.php?f=51&t=429
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?


Return to “Airports”

Who is online

Users browsing this forum: No registered users and 9 guests