• Which the release of FS2020 we see an explosition of activity on the forun and of course we are very happy to see this. But having all questions about FS2020 in one forum becomes a bit messy. So therefore we would like to ask you all to use the following guidelines when posting your questions:

    • Tag FS2020 specific questions with the MSFS2020 tag.
    • Questions about making 3D assets can be posted in the 3D asset design forum. Either post them in the subforum of the modelling tool you use or in the general forum if they are general.
    • Questions about aircraft design can be posted in the Aircraft design forum
    • Questions about airport design can be posted in the FS2020 airport design forum. Once airport development tools have been updated for FS2020 you can post tool speciifc questions in the subforums of those tools as well of course.
    • Questions about terrain design can be posted in the FS2020 terrain design forum.
    • Questions about SimConnect can be posted in the SimConnect forum.

    Any other question that is not specific to an aspect of development or tool can be posted in the General chat forum.

    By following these guidelines we make sure that the forums remain easy to read for everybody and also that the right people can find your post to answer it.

Giant water LOD5

Messages
8
Country
brazil
Good evening everyone!

Sorry if this has been asked before, but I did some search and found no results about. Also, I've readed every tutorial around and still can't determine why my LC results are the following:

imagem.jpg


The intention was to be, actually, this simple thing:

imagem2.jpg


Does it sound a familiar problem to anyone?

I did put the converted BGL to Addon Scenery/Scenery, then Addon Scenery/MyScenery/scenery (with no texture folder) but still nothing... Even Luis Sá didn't realize what could be happening. The entirely LOD5 shows water LC instead of a combination of four custom tiles plus the transparency at the rest.

Thank you very much.
 
Last edited:
You probably need to gather some files into a folder, zip the folder and attach it to a post.

Dick
 
I believe you have your PC system decimal separator set as "," rather than the required "." This is a problem with resample, rather than with SBuilder. Here is your INF file:

Code:
[Source]
   Type = ClassU8
   SourceDir = "."
   SourceFile = "LD_3733.raw"
   Lat = -2,8125
   Lon = -41,25
   NumOfCellsPerLine = 257
   NumOfLines = 257
   CellXdimensionDeg = 0,0146484375
   CellYdimensionDeg = 0,010986328125

[Destination]
   DestDir = ".\work"
   DestBaseFileName = "LD_3733"
   NorthLat = -2,8125
   SouthLat = -5,625
   EastLong = -37,5
   WestLong = -41,25

It should read:

Code:
[Source]
   Type = ClassU8
   SourceDir = "."
   SourceFile = "LD_3733.raw"
   Lat = -2.8125
   Lon = -41.25
   NumOfCellsPerLine = 257
   NumOfLines = 257
   CellXdimensionDeg = 0.0146484375
   CellYdimensionDeg = 0.010986328125

[Destination]
   DestDir = ".\work"
   DestBaseFileName = "LD_3733"
   NorthLat = -2.8125
   SouthLat = -5.625
   EastLong = -37.5
   WestLong = -41.25

Dick
 
That's a good beginning!

In other hand, I thought the the BGL file was all I need, so I never bothered to the RAW and INF file. :o

What should I do with them? :confused:

Thank you very much for the help you're providing!
 
Back
Top