FSGT Gabe wrote on Jan 2
nd, 2007 at 3:33pm:
There must be a simple answer, but I'm very confused. I'm working on improving CYOO and I'm trying to create an exclusion area around my airport. First I tried adding this line to the scenery.cfg:
Exclude=N43 55.59,W78 54.12,N43 55.08,W78 53.13,all
But this got rid of my airport
. Doesn't help.
So I tried to create a BGL file in FSSC, but it did nothing.
HOW DO I DO THIS? I want to exclude the default autogen and airport buildings.
Thanks SO much!
- Kevin
Is this for FS9 or FSX?
In FSX you need to use the BGL compiler in the SDK and feed it an XML exclude file.
Here's one I created to wipe out a default airport and the autogen stuff so that
my imported FS9 scenery and airport could live there:
<?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 = "N48:56:42.42"
latitudeMaximum = "N48:57:57.68"
longitudeMinimum = "E014:26:45.94"
longitudeMaximum = "E014:24:20.40"
excludeAllObjects = "TRUE"
excludeBeaconObjects = "TRUE"
excludeEffectObjects = "TRUE"
excludeGenericBuildingObjects = "TRUE"
excludeLibraryObjects = "TRUE"
excludeTaxiwaySignObjects = "TRUE"
excludeTriggerObjects = "TRUE"
excludeWindsockObjects = "TRUE"/>
</FSData>
For FS9 I use a utility called "ExcBuilder version 2.0 for FS2004" to create excludes.
Paul