Skip to content
Snippets Groups Projects
Select Git revision
  • b31a209b9f508be93f7fe55366bf7384dec1ecf2
  • master default protected
  • Version-3.3.0
  • Version-3.2.1
  • Version-3.2.0
  • Version-3.1.2
  • Version-3.1.1
  • Version-3.1.0
  • Version-3.0.0
9 results

solo_utc2obt.pro

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