Skip to content

Commit

Permalink
Merge pull request #132 from fact-project/delta_default_unit
Browse files Browse the repository at this point in the history
Make rad default unit for delta
  • Loading branch information
maxnoe authored May 27, 2020
2 parents 4b54021 + 2e41a74 commit 037486a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aict_tools/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ def __init__(self, config):
self.cog_x_column = model_config.get('cog_x_column', 'cog_x')
self.cog_y_column = model_config.get('cog_y_column', 'cog_y')
self.delta_column = model_config.get('delta_column', 'delta')
self.delta_unit = u.Unit(model_config.get('delta_unit', 'deg'))
self.delta_unit = u.Unit(model_config.get('delta_unit', 'rad'))

cols = {
self.cog_x_column,
Expand Down

0 comments on commit 037486a

Please sign in to comment.