;+
; NAME:
;   inms_saturn_wlongitude - computes the west longitude w.r.t. Saturn (Depreciated use inms_auxiliary_value)
;
function inms_saturn_wlongitude,  axData ;;(i) level 1A data structure
;
; PURPOSE:
;    calculate the west longitude of the spacecraft in the IAU_saturn
;    frame
;
; RETURN VALUE:
;    A vector of west longitudes in degrees
;
; ARGUMENTS
;    axData  level1A data structure
;
; Changes
;  25-Aug-2004     DAG  Initial coding
;-
;===========================================================================

    return,  (720. - !radeg * atan(axData.sc_pos_s_Y, axData.sc_pos_s_x)) mod 360
end
