Skip to content
Snippets Groups Projects
Select Git revision
  • 463bac9c09f11fe73f8ec637c072a451df8bac6b
  • main default
  • develop
  • feature/arch_support
  • feature/global_refactoring
  • v1.0.0
6 results

account.html

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