Skip to content

Commit

Permalink
Merge pull request #1 from SteffanDavies/pygmtsar-faster_orbit_download
Browse files Browse the repository at this point in the history
Changed code to avoid error
  • Loading branch information
SteffanDavies authored Aug 1, 2023
2 parents 9a84954 + 02eea7b commit e4088c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pygmtsar/pygmtsar/SBAS_orbits.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def download_orbits(self):
from eof.download import download_eofs

# For each date get a single product with missing orbit
sbas_df_missingorb = self.df.where(self.df.orbitpath.isna())
sbas_df_missingorb = sbas.df[sbas.df.orbitpath.isna()]
sbas_df_missingorb = sbas_df_missingorb[~sbas_df_missingorb.index.duplicated(keep="first")]

# Apply orbit to products of same date
Expand Down

0 comments on commit e4088c4

Please sign in to comment.