Commit 5c600839 authored by garciay's avatar garciay
Browse files

Add external function f_getMinuteOfTheYear()

Editorial changes
parent b9a7e11c
Loading
Loading
Loading
Loading
+20 −1
Original line number Original line Diff line number Diff line
@@ -112,6 +112,19 @@ module LibItsCommon_Functions {
            return v_timeMark;
            return v_timeMark;
        }
        }
           
           
        /**
         * @desc    Gets the Minute of current UTC year
         * @return  MinuteOfTheYear - tenths of a second in the current or next hour in units of 1/10th second from UTC time
         */
        function f_getMinuteOfTheYear() return MinuteOfTheYear {
            var MinuteOfTheYear v_minuteOfTheYear := 0;
            
//            log("*** f_getMinuteOfTheYear: INFO: calling fx_getMinuteOfTheYear() ***");
            v_minuteOfTheYear := fx_getMinuteOfTheYear();
            
            return v_minuteOfTheYear;
        }
           
    } // end generalFunctions  
    } // end generalFunctions  
       
       
    group itsFunctions { 
    group itsFunctions { 
@@ -185,11 +198,17 @@ module LibItsCommon_Functions {
        external function fx_getCurrentTime() return TimestampIts;
        external function fx_getCurrentTime() return TimestampIts;
        
        
        /**
        /**
         * @desc    Gets the current time since 01/01/2004
         * @desc    Gets the tenths of a second in the current or next hour in units of 1/10th second from UTC time
         * @return  TimeMark - tenths of a second in the current or next hour in units of 1/10th second from UTC time
         * @return  TimeMark - tenths of a second in the current or next hour in units of 1/10th second from UTC time
         */
         */
        external function fx_getCurrentTimeMark() return UInt32;
        external function fx_getCurrentTimeMark() return UInt32;
        
        
        /**
         * @desc    Gets the minutes of current UTC year
         * @return  MinuteOfTheYear - minutes of current UTC year
         */
        external function fx_getMinuteOfTheYear() return UInt16;
        
        /**
        /**
         * @desc    External function to compute distance between two points
         * @desc    External function to compute distance between two points
         * @param   p_latitudeA   Latitude of first point
         * @param   p_latitudeA   Latitude of first point