• 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.

Rebuilding default airport. Have a questions

Messages
6
Hi to all!
I'm trying fix default UMMS airport.
So what I knew about default airport. Information about that airport contained in the follow files:
ap955120.bgl - contain data for UMMM, UMLI and UMMS airport
ob9eure0.bgl - contain data for objects.. I dont knew about all areas, but objects of the UMMS area included in this file
nv9eure0.bgl - contain navigation data (NDB, VOR, Intersections and Airways).

I want change ap955120.bgl for example. And first problem what I have - Taxiway Signs... How I can make same file for Taxiway Signs only?
I trying to create bgl but getting errors after try comilling with bglcomp.exe...
Tell me please where not correct data in the my xml?

<?xml version="1.0" encoding="ISO-8859-1"?>
<FSData
version="9.0"
xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'
xsi:noNamespaceSchemaLocation="bglcomp.xsd" >

<TaxiwaySign
lat="53.872069"
lon="28.051199"
heading="48.00"
size="SIZE3"
justification="RIGHT"
label="dL&lt;"
</TaxiwaySign>

</FSData>
 
Hi,

Albert Slovak said:
I want change ap955120.bgl for example.

Never ever change the default files. Almost all changes you want to make can be made in a new BGL file that will have priority over the default scenery. Or by using excludes to remove the default scenery. If every designer would start to change default files, it would become a complete chaos, with different versions of the same files etc.

Albert Slovak said:
And first problem what I have - Taxiway Signs... How I can make same file for Taxiway Signs only?

Your first fault in the code is the </TaxiwaySign> command. That is not valid on that location, you should use a /> instead at the end.

But then it does still not compile here, I think it should be inside an airport command, but I did not test that.
 
Hello Albert,

Taxiway signs are part of Airport definition and can not be compiled as separate elements. You have to redefine the airport as well. To avoid duplication use DeleteAirport clause. Refer to chapter Airport in FS2004BGLCompSDK.doc for future information.
 
Back
Top