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

Default Scenery Buildings

Messages
6
Country
us-colorado
I am trying to make 48V more realistic but where the taxiway moves into the flyin community a building is sitting on this taxiway and I want to get rid of it but have no clue. I use Abacus EZ scenery, Rwy 12 Object Placer and Traffic Tools. Is there someone that could help me?
 
You need to create an exclusion rectangle where the building is. Hopefully that will remove it.

I assume you are using FS9? You can create excludes manually using XML or you can use a tool such as EXCBuilder2.
 
Default Building in FS9

You need to create an exclusion rectangle where the building is. Hopefully that will remove it.

I assume you are using FS9? You can create excludes manually using XML or you can use a tool such as EXCBuilder2.

Jon, I am using FS9 and I don't do XML but am working on that. I will look into EXCBuilder2. With XML what file is the exclude put in. I am very green when it comes to scenery design on that level. I like your work and hope to be able to do such quality one day.
Simon
 
EXCBuilder - Works Fine

Jon, Trying to exclude many areas won't work as maybe i am trying to doit. I have my .xmls below and I want to combine and compile them to exclude many buildings. How do I combine them?

<?xml version="1.0"?>
<FSData
version = "9.0"
xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'
xsi:noNamespaceSchemaLocation="bglcomp.xsd" >
<ExclusionRectangle
latitudeMinimum = "40.0010894829556"
latitudeMaximum = "40.0176013313521"
longitudeMinimum = "-105.049950246766"
longitudeMaximum = "-105.025657945496"
excludeGenericBuildingObjects = "TRUE"
/>
</FSData>


<?xml version="1.0"?>
<FSData
version = "9.0"
xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'
xsi:noNamespaceSchemaLocation="bglcomp.xsd" >
<ExclusionRectangle
latitudeMinimum = "40.0049164006511"
latitudeMaximum = "40.0052405786614"
longitudeMinimum = "-105.041165988008"
longitudeMaximum = "-105.040765209792"
excludeGenericBuildingObjects = "TRUE"
/>
</FSData>

Your help is very welcomed.
Simon
 
Combined your XML would look like this:

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

<ExclusionRectangle
latitudeMinimum = "40.0010894829556"
latitudeMaximum = "40.0176013313521"
longitudeMinimum = "-105.049950246766"
longitudeMaximum = "-105.025657945496"
excludeGenericBuildingObjects = "TRUE"
/>

<ExclusionRectangle
latitudeMinimum = "40.0049164006511"
latitudeMaximum = "40.0052405786614"
longitudeMinimum = "-105.041165988008"
longitudeMaximum = "-105.040765209792"
excludeGenericBuildingObjects = "TRUE"
/>

</FSData>

Not all buildings are generic buildings. You might want to try the excludeAll option instead of just excluding generic buildings.
 
ExcBuilder

Jon
I did go with the exclude all. It works much better, for when I was doing the rectangle exclude it was not getting everything. Thank you for your help.
Simon
 
Jon
I did go with the exclude all. It works much better, for when I was doing the rectangle exclude it was not getting everything. Thank you for your help.
Simon


Are you working in FS9 or FSX?? in any case some autogen is not removed by the XML exclude rectangle. What are you still seeing that you want to get rid of?
 
Fs9

Jon,
There is nothing remaining that I included in the area to wipe clean. I exclude most everything except objects so I will be able to customize it myself. I just build an exclude defining about 4 different exclude areas and compiled that XML file and it did exactly what I expected.
 
Back
Top