Skip to content

Commit

Permalink
Merge pull request #183 from ClaudeMercier/spice_instr_str_method_fix
Browse files Browse the repository at this point in the history
fix obsid method call in str
  • Loading branch information
DanRyanIrish committed Oct 7, 2021
2 parents 88e58d1 + 3994cc2 commit 613caf6
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions sunraster/instr/spice.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,12 +244,13 @@ def __str__(self):
return textwrap.dedent(f"""\
SPICEMeta
---------
Observatory:\t\t{self.observatory}
Instrument:\t\t{self.instrument}
Detector:\t\t{self.detector}
Spectral Window:\t{self.spectral_window}
Date:\t\t\t{self.date_reference}
OBS ID:\t\t\t{self.observing_mode_id}
Observatory:\t\t\t\t{self.observatory}
Instrument:\t\t\t\t{self.instrument}
Detector:\t\t\t\t{self.detector}
Spectral Window:\t\t\t{self.spectral_window}
Date:\t\t\t\t\t{self.date_reference}
OBS_ID (SOC Observation ID):\t\t{self.observing_mode_id_solar_orbiter}
SPIOBSID (SPICE Observation ID):\t{self.spice_observation_id}
""")

def __repr__(self):
Expand Down

0 comments on commit 613caf6

Please sign in to comment.