Skip to content

Commit

Permalink
ultra rapid solution hours
Browse files Browse the repository at this point in the history
  • Loading branch information
YassineYousfi committed Aug 6, 2024
1 parent cfdb565 commit 1e827f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion laika/downloader.py
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ def download_orbits_gps(time, cache_dir, ephem_types):
ephem_strs = {
EphemerisType.FINAL_ORBIT: ['IGS0OPSFIN_{yyyy}{doy}0000_01D_15M_ORB.SP3'.format(yyyy=time.year, doy=time.doy)],
EphemerisType.RAPID_ORBIT: ['IGS0OPSRAP_{yyyy}{doy}0000_01D_15M_ORB.SP3'.format(yyyy=time.year, doy=time.doy)],
EphemerisType.ULTRA_RAPID_ORBIT: ['IGS0OPSULT_{yyyy}{doy}0000_02D_15M_ORB.SP3'.format(yyyy=time.year, doy=time.doy)],
EphemerisType.ULTRA_RAPID_ORBIT: ['IGS0OPSULT_{yyyy}{doy}{hh}00_02D_15M_ORB.SP3'.format(yyyy=time.year, doy=time.doy, hh=hour) for hour in ['18', '12', '06', '00']],
}

folder_path = "%i/" % time.week
Expand Down

0 comments on commit 1e827f4

Please sign in to comment.