Commit 4d8ac248 authored by tepelmann's avatar tepelmann
Browse files

Tester node positions are now given by PIXITs.

parent 0e6d2c2d
Loading
Loading
Loading
Loading
+1 −13
Original line number Original line Diff line number Diff line
@@ -156,19 +156,7 @@ module LibItsCommon_Functions {
         */
         */
        function f_getTsCurrentPosition() return ReferencePosition {
        function f_getTsCurrentPosition() return ReferencePosition {
            
            
            // TODO: correct values required
            return PX_TS_POSITION;
            var ReferencePosition v_referencePosition := {
                longitude := {hemisphere := east, degree := 0},
                latitude := {hemisphere := north, degree := 0},
                elevation := 0,
                heading := omit,
                streetName := omit,
                positionConfidence := omit,
                elevationConfidence := omit,
                roadSegmentID :=0
            }
            
            return v_referencePosition;
            
            
        } // end f_getTsCurrentPosition
        } // end f_getTsCurrentPosition
                
                
+14 −0
Original line number Original line Diff line number Diff line
@@ -15,4 +15,18 @@ module LibItsCommon_Pixits {
     */
     */
    modulepar StationID PX_TESTER_STATION_ID := 111111;
    modulepar StationID PX_TESTER_STATION_ID := 111111;
    
    
    /**
     *  @desc The position of the tester.
     */
    modulepar ReferencePosition PX_TS_POSITION := {
        longitude := {hemisphere := east, degree := 0},
        latitude := {hemisphere := north, degree := 0},
        elevation := 0,
        heading := omit,
        streetName := omit,
        positionConfidence := omit,
        elevationConfidence := omit,
        roadSegmentID :=0
    }
    
} // end LibItsCommon_Pixits
} // end LibItsCommon_Pixits
 No newline at end of file