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

How to delete bridges and objects

Messages
101
Country
france
I try to deleted roads bridges, railroad bridges and a building (stadium) but what tag i have to use ?

I have tryed exclude___everything but it doesn't efficient. All thing are deleted except bridges and buildings.

Exclude Railroad_Bridges , same result.

Exclude Road_Bridges_... the tags i have tested doesn't efficient to, but i have not tested all.

Is someone ave and idea ? Thank.
 
you have to make an exclusion rectangle manually. the "Compiling BGL" in the SDK manual explains how to do it. Its a little tricky at first but once you get the hang of excluding things its not hard.
 
That's correct you will need to use a BglComp based Exclusion Rectangle
 
I am adding BGLComp support at the moment... so you will be able to do it from within FSX KML very soon.
 
Thank you,

It's true that Fsxkml can't do that now. Without consulting the forum, i had the same idea this afternoon and i have made this xml file :

<?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">

<ExclusionRectangle
latitudeMinimum = "N47.18"
latitudeMaximum = "N48.25"
longitudeMinimum = "W1.62"
longitudeMaximum = "W1.16"
excludeAllObjects = "FALSE"
excludeBeaconObjects = "FALSE"
excludeEffectObjects = "FALSE"
excludeExtrusionBridgeObjects = "TRUE"
excludeGenericBuildingObjects = "TRUE"
excludeLibraryObjects = "TRUE"
excludeTaxiwaySignObjects = "FALSE"
excludeTriggerObjects = "FALSE"
excludeWindsockObjects = "FALSE"/>
</FSData>

after compilin in bgl, it's work fine for exclude d objects and bridges !
 
Back
Top