Skip to content
Snippets Groups Projects
Select Git revision
  • 50069f84a90b25943fdaf245c1be5d4fe45c0ef7
  • main default protected
  • oleg-alexandrov-patch-1
  • radtan
  • 2.0
  • Kelvinrr-patch-1
  • acpaquette-patch-1
  • gxp_testing
  • 2.0.2
  • 2.0.1
  • 2.0.0
  • 1.7.0
  • 1.6.0
  • 1.5.2
  • 1.5.1
  • 1.5.0
  • 1.4.1
  • 1.4.0
  • 1.3.1
  • 1.3.0
  • 1.2.0
  • 1.1.1
  • 1.1.0
  • 1.0.0
24 results

nlohmann_jsonConfig.cmake

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