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

    return, !radeg * asin(axData.sc_pos_s_z/axData.distance_s)
end

