Skip to content
Snippets Groups Projects
Select Git revision
  • 4b38509edf890d90796b94db58c5150f3f5d8d98
  • master default
  • LTP21
  • LTP20
  • LTP19
  • LTP18
  • LTP17
  • LTP16
  • LTP15
  • LTP14
  • LTP13
  • LTP12
  • LTP01-03
  • LTP05
  • LTP04
  • LTP06
  • LTP11
  • LTP10
  • LTP09
  • LTP08
  • LTP07
  • LTP00
  • Version-LTP21_1.0.0
  • Version-LTP20_1.0.0
  • Version-LTP19_1.1.0
  • Version-LTP18_1.1.0
  • Version-LTP17_1.2.0
  • Version-LTP16_1.2.0
  • Version-LTP19_1.0.0
  • Version-LTP18_1.0.0
  • Version-LTP17_1.1.0
  • Version-LTP16_1.1.0
  • Version-LTP16_1.0.0
  • Version-LTP15_1.0.0
  • Version-LTP14_1.0.0
  • Version-LTP13_1.0.0
  • Version-LTP12_1.1.0
  • Version-LTP01-03_1.2.1
  • Version-LTP12_1.0.0
  • Version-LTP01-03_1.2.0
  • Version-LTP04_1.2.0
  • Version-LTP05_1.1.0
42 results

UV_RC_eff_map_det.fits.old

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