Skip to content
Snippets Groups Projects
Select Git revision
  • 33caa804e99f090f9adb5d076a316cbad5760620
  • main default protected
  • Kelvinrr-patch-3
  • radius_update
  • revert-616-apollo_pan
  • vims
  • 0.10
  • Kelvinrr-patch-2
  • revert-563-minirf_fix
  • Kelvinrr-patch-1
  • 0.9
  • acpaquette-patch-3
  • acpaquette-patch-2
  • acpaquette-patch-1
  • spiceql
  • ci-coverage
  • 0.10.0
  • 0.9.1
  • 0.9.0
  • 0.8.7
  • 0.8.8
  • 0.8.6
  • 0.8.3
  • 0.8.4
  • 0.8.5
  • 0.8.2
  • 0.8.1
  • 0.8.0
  • 0.7.3
  • 0.7.2
  • 0.7.1
  • 0.7.0
  • 0.6.5
  • 0.6.4
  • 0.6.3
  • 0.6.2
36 results

States.h

Blame
  • solo_utc2obt.pro 233 B
    function solo_utc2obt, utc
    
    	; convert the requested utc into ephemeris time
    
    	cspice_str2et, utc, et
    
    	; convert the ephemeris time into spacecraft obt
    
    	cspice_sce2s, -144L, et, clk_str
    	obt = clk_str.substring(2)
    	return, obt
    end