Skip to content

Commit

Permalink
#67 prepare for future implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
KaoruNishikawa committed Apr 21, 2021
1 parent 2eac70f commit f34f08e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion nasco_analysis/io.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def create_tp_array(self) -> xr.Dataset:
)
return self.data_set

def correct_kisa(self) -> Tuple[np.ndarray]:
def correct_kisa(self) -> Tuple[xr.DataArray]:
if self.kisa_path is None:
self.encoder_set = self.encoder_set.rename(
{"enc_az": "az", "enc_el": "el"}
Expand All @@ -139,6 +139,9 @@ def correct_kisa(self) -> Tuple[np.ndarray]:

return az, el

def correct_collimation_error(self) -> Tuple[xr.DataArray]:
return NotImplemented

def combine_metadata(self, int_obsmode: bool = False) -> xr.DataArray:
self.correct_kisa()

Expand Down

0 comments on commit f34f08e

Please sign in to comment.