ste

Forum Replies Created

Viewing 15 posts - 1 through 15 (of 81 total)
  • Author
    Posts
  • in reply to: What the red mark means in the FS flight? #555
    ste
    Member

    It is the point on the tracklog used to calculate best distance flown in the task.

    Stein-Tore

    in reply to: Country Codes #445
    ste
    Member

    FAI use IOC codes (more or less).
    This is list of “FAI” countries: http://www.fai.org/hang_gliding/extranet/rankings_countries.asp
    should always be uptodate.

    The lines are organised as follows:

    * 5 fields separated by ‘;’

    * field 1: the country ID number in the FAI database

    * field 2: country name as it should be used

    * field 3: three-letter abbreviation

    * field 4: type of FAI member category (if value is ‘1’ => active
    member; if value is ’19’ => associate member; if value is ‘3’ =>
    temporary member ; representatives from temporary members are ‘FAI
    competitors’ which should appear in the individual rankings but not the
    country rankings; no problem to put their country name alongside ‘FAI
    competitor’ in the individual rankings)

    * field 5: if value = ‘1’ then it is a suspended country.

    FS started out of the box with no internet connection will use ISO codes.
    Starting FS with the PC online will cause the list to be updated with the latest codes from
    http://www.fai.org/hang_gliding/extranet/rankings_countries.asp (which are IOC codes).
    This is stored in user.config which is found under
    “C:Documents and Settings<user>Local SettingsApplication DataErdal_ITFsComp.exe_Url_<something…>1.2.13.1”
    (no point in attempting to change the Nations entry in this file as it will be updated any time you start FS and are online.

    The World Ranking (WPRS) will accepts results with either codes.

    Stein-Tore

    in reply to: FS Flight Airspace #434
    ste
    Member

    Just noticed this in doc for GpsDump 4.37:

    “Radius of a CTR circle is in knots, unless the number is followed by “km”.”

    FsFlight will not understand “km”. It does expect it to be nautical miles (knots).

    The only spec on Airspace format that I’ve found is this: http://www.winpilot.com/UsersGuide/UserAirspace.asp

    Seems there is quite a bit left to imagination …

    Stein-Tore

    in reply to: FS 1.2.13 #433
    ste
    Member

    2009-07-27:

    http://fs.fai.org/wiki/Fs1.2.13 UPDATED.

    Changes:

    At the HG Worlds in France in June they did not like getting 1000 points for tasks with no one in goal. So the option to select is restored.

    Also a small bugfix regarding time&arrival points penalty if reaching ES but not goal. The bug was that in the case of no one in goal those landing btw ES and goal would still get penalty on arrival points.

    Appart from that no other changes. Seems 1.2.13 has no serious bugs (reported so far).

    Stein-Tore

    in reply to: Team scoring #430
    ste
    Member

    Just tried simple test with team scoring. Worked as expected.

    Added “Team” as custom attribute. Then set a few pilots to two different values. Then asked for “Team results…”. Got only the pilots in the two teams I had created.

    Stein-Tore

    in reply to: Team scoring #419
    ste
    Member

    Ahh!
    Will have a look at it …

    Stein-Tore

    ste
    Member

    see ticket #191 -> http://fs.fai.org/attachment/ticket/191

    Stein-Tore

    in reply to: FS Flight Airspace #417
    ste
    Member

    At the moment tracklogpoints inside (altitude within limits of AL & AH) any areas will be flagged.

    As mentioned above, one solution is to edit the existing airspaces so that unrestricted airspace is not there.

    I don’t know if the Airspace format has any provisions for this. Will look at it. Would prefer to not create new stuff inside airspace files which is not part of their format.

    If anyone got any bright ideas …

    Stein-Tore

    in reply to: FS 1.2.13 #406
    ste
    Member

    2009-06-09:

    http://fs.fai.org/wiki/Fs1.2.13 RELEASED.

    Stein-Tore

    in reply to: FS 1.2.13 #405
    ste
    Member

    🙁

    Problem is, it is used for AH,

    AL SFC

    AH 1700AGL

    so if you want to use airspace files with FS and get predictable results you should check the content of it and modify stuff like this.

    Stein-Tore

    in reply to: FS 1.2.13 #403
    ste
    Member

    Just updated http://fs.fai.org/wiki/Fs1.2.13

    It now handles circles and arcs (type DB …, not DA …) in airspace files.

    Note that it seems airspace files (of OpenAir type) comes in all shapes and forms. The format (as far as I’ve found) is very loosly defined.

    FS makes an “best effort” at understanding. Some stuff is just not possible, such as AGL, FS does not know ground level …

    Will test it some more then it will released on monday.

    Stein-Tore

    in reply to: report with FsCustumAttribute #401
    ste
    Member

    Assuming you have a custom attribute named “test”.

    Make a copy of task_result_.tkr.xsl.

    Search for <xsl:template name="result_heading_row"> and place

    <th class="fs_res">Test</th>

    somewhere btw the other <th…

    Search for <xsl:template name="result_row"> and place

    <td class="fs_res">
      <xsl:value-of select="$comp_pilot/FsCustomAttributes/FsCustomAttribute[@name='test']/@value"/>
    </td>

    somewhere btw the other <td class=”fs_res”…

    Example:

    <xsl:template name="result_heading_row">
    		<tr>
    			<th class="fs_res">#</th>
    			<th class="fs_res">Id</th>
    			<th class="fs_res">Name</th>
    			<th class="fs_res"></th>
    			<th class="fs_res">Nat</th>
    			<th class="fs_res">Glider</th>
          <th class="fs_res">Sponsor</th>
          <!-- FsCustomAttribute test -->
          <th class="fs_res">FsCustomAttribute "test"</th>
    
    ...
    	<xsl:template name="result_row">
    ...
    			<td class="fs_res">
    				<xsl:value-of select="$comp_pilot/@glider"/>
    			</td>
    			<td class="fs_res">
    				<xsl:value-of select="$comp_pilot/@sponsor"/>
    			</td>
          <td class="fs_res">
            <!-- FsCustomAttribute test -->
            <xsl:value-of select="$comp_pilot/FsCustomAttributes/FsCustomAttribute[@name='test']/@value"/>
          </td>
    ...

    Stein-Tore

    in reply to: PWC 2009 Scoring System #398
    ste
    Member
    in reply to: FS 1.2.13 #397
    ste
    Member

    Check http://fs.fai.org/wiki/Fs1.2.13 for more news about FS 1.2.13 and to get the last test version and the official version when it is released.

    One of the changes is PWC2009 scoring formula and the ability to read IGC files.

    Here is a test competition created from the PWC comp in Korea last month: http://www.kkpg.no/pf/PWC_2009_2_Mun_Gyeong_Korea_FS_.zip
    It includes the fsdb with participants and tasks, waypoint list and all tracklogs and has been scored with FS’s version of PWC2009 scoring formula.

    Stein-Tore

    in reply to: PWC 2009 Scoring System #396
    ste
    Member

    Does anyone have the task definitions for the PWC that was i Brazil?

    Stein-Tore

Viewing 15 posts - 1 through 15 (of 81 total)