32 lines
792 B
XML
32 lines
792 B
XML
<?xml version="1.0"?>
|
|
<!-- General settings for all Ascension -->
|
|
<PropertyList>
|
|
<!-- Define Ascension island as a box with given latitude/longitude -->
|
|
<condition>
|
|
<and>
|
|
<equals>
|
|
<property>sim/startup/season</property>
|
|
<value>summer</value>
|
|
</equals>
|
|
<and>
|
|
<greater-than>
|
|
<property>position/longitude-deg</property>
|
|
<value>-14.9</value>
|
|
</greater-than>
|
|
<less-than>
|
|
<property>position/longitude-deg</property>
|
|
<value>-13.6</value>
|
|
</less-than>
|
|
<greater-than>
|
|
<property>position/latitude-deg</property>
|
|
<value>-8.5</value>
|
|
</greater-than>
|
|
<less-than>
|
|
<property>position/latitude-deg</property>
|
|
<value>-7.4</value>
|
|
</less-than>
|
|
</and>
|
|
</and>
|
|
</condition>
|
|
|
|
</PropertyList>
|