Hello folks,
Before trying to resolve some of my interesting visible range issues, I have been trying to set up some conditionally visible objects at the primary airfield I am working on at present.
They all appear but, for some reason, the Runway Caravans appear two at a time - always the same two. If the "active" is 34, then 16 and 34 will both be visible. If 22 or 28 are active, then both 22 and 28 will be visible. Ditto the reciprocal 04 and 10 caravans. I've recreated the entire file, gone through it umpteen times - I cannot see why with winds set to, say 220/08, as they are right now on my sim, I would be seeing both 22 and 28 caravans... But I am.
I strongly suspect that it's me doing something really stupid, so can someone please take a look at the XML file and see if they can spot what it is, before I really do run out of hair to tear out? The windsock and Active Runway "Tee" are working fine.
Thanks.
Ian P.
Before trying to resolve some of my interesting visible range issues, I have been trying to set up some conditionally visible objects at the primary airfield I am working on at present.
They all appear but, for some reason, the Runway Caravans appear two at a time - always the same two. If the "active" is 34, then 16 and 34 will both be visible. If 22 or 28 are active, then both 22 and 28 will be visible. Ditto the reciprocal 04 and 10 caravans. I've recreated the entire file, gone through it umpteen times - I cannot see why with winds set to, say 220/08, as they are right now on my sim, I would be seeing both 22 and 28 caravans... But I am.
I strongly suspect that it's me doing something really stupid, so can someone please take a look at the XML file and see if they can spot what it is, before I really do run out of hair to tear out? The windsock and Active Runway "Tee" are working fine.
Thanks.
Ian P.
Code:
<SODE>
<!-- Data Probe serving its clients-->
<SimObject Name="RAF HG">
<Placement Lat="52.515527028" Lon="-2.263617551" Alt="282.960" Hdg="0.0"/>
<Model SimTitle="Environmental Data Probe">
<EnvironmentalDataProbe ClientList="RunwayCaravan04;RunwayCaravan10;RunwayCaravan22;RunwayCaravan28;RunwayCaravan34;RunwayTee;WindSock"/>
</Model>
</SimObject>
<!-- Wind Direction Ranges based switching of alternate models -->
<!-- Runway Caravans -->
<SimObject Name="RunwayCaravan04">
<Placement Lat="52.514348402" Lon="-2.270070776" Alt="0#AGL" Hdg="040.5"/>
<Model SimTitle="RunwayCaravanBlack">
<ConditionalVisibility Variable="WindDirection" Value="011-070"/>
</Model>
</SimObject>
<SimObject Name="RunwayCaravan10">
<Placement Lat="52.51765255" Lon="-2.268075885" Alt="0#AGL" Hdg="099.7"/>
<Model SimTitle="RunwayCaravanBlack">
<ConditionalVisibility Variable="WindDirection" Value="071-130"/>
</Model>
</SimObject>
<SimObject Name="RunwayCaravan16">
<Placement Lat="52.521604423" Lon="-2.261958903" Alt="0#AGL" Hdg="160.3"/>
<Model SimTitle="RunwayCaravanBlack">
<ConditionalVisibility Variable="WindDirection" Value="131-190"/>
</Model>
</SimObject>
<SimObject Name="RunwayCaravan22">
<Placement Lat="52.520789729" Lon="-2.260528334" Alt="0#AGL" Hdg="219.1"/>
<Model SimTitle="RunwayCaravanBlack">
<ConditionalVisibility Variable="WindDirection" Value="191-250"/>
</Model>
</SimObject>
<SimObject Name="RunwayCaravan28">
<Placement Lat="52.515930623" Lon="-2.255259362" Alt="0#AGL" Hdg="285.5"/>
<Model SimTitle="RunwayCaravanBlack">
<ConditionalVisibility Variable="WindDirection" Value="251-310"/>
</Model>
</SimObject>
<SimObject Name="RunwayCaravan34">
<Placement Lat="52.513214393" Lon="-2.257143034" Alt="0#AGL" Hdg="342.2"/>
<Model SimTitle="RunwayCaravanBlack">
<ConditionalVisibility Variable="WindDirection" Value="311-010"/>
</Model>
</SimObject>
<!-- Runway T -->
<SimObject Name="RunwayTee">
<Placement Lat="52.515900627" Lon="-2.263531110" Alt="0#AGL" Hdg="018.0"/>
<Model SimTitle="RunwayTee04">
<ConditionalVisibility Variable="WindDirection" Value="011-070"/>
</Model>
<Model SimTitle="RunwayTee10">
<ConditionalVisibility Variable="WindDirection" Value="071-130"/>
</Model>
<Model SimTitle="RunwayTee16">
<ConditionalVisibility Variable="WindDirection" Value="131-190"/>
</Model>
<Model SimTitle="RunwayTee22">
<ConditionalVisibility Variable="WindDirection" Value="191-250"/>
</Model>
<Model SimTitle="RunwayTee28">
<ConditionalVisibility Variable="WindDirection" Value="251-310"/>
</Model>
<Model SimTitle="RunwayTee34">
<ConditionalVisibility Variable="WindDirection" Value="311-010"/>
</Model>
</SimObject>
<!-- Windsock -->
<SimObject Name="WindSock">
<Placement Lat="52.518009" Lon="-2.262158" Alt="0#AGL" Hdg="0.0"/>
<Model SimTitle="Windsock Slow">
<VariableDrivenRotation Variable="WindDirection" Axis="HEADING" Animated="No"/>
<ConditionalVisibility Variable="WindSpeed" Value="0-14"/>
</Model>
<Model SimTitle="Windsock Medium Speed">
<VariableDrivenRotation Variable="WindDirection" Axis="HEADING" Animated="No"/>
<ConditionalVisibility Variable="WindSpeed" Value="15-28"/>
</Model>
<Model SimTitle="Windsock Fast">
<VariableDrivenRotation Variable="WindDirection" Axis="HEADING" Animated="No"/>
<ConditionalVisibility Variable="WindSpeed" Value="29-60"/>
</Model>
</SimObject>
</SODE>




