-
Notifications
You must be signed in to change notification settings - Fork 0
Exercise 2 python. #10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
improved comments and doc strings
|
|
||
| def __init__(self, start_time, end_time, delta): | ||
| """ Initializes the observations associated with a TIEGCM experiment | ||
| """ Initialize the window and model times associated with a TIEGCM experiment |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it would be good to clarify what TIEGCM means
jarbesfeld
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Left some suggestions
| """ | ||
|
|
||
| # Error checking of delta input |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it would be good to add documentation indicating why these numbers were added for the conditions
| start_time - string '%Y-%m-%d %H:%M:%S' model start time of experiment | ||
| end_time - string '%Y-%m-%d %H:%M:%S' model end time of experiment | ||
| start_time - string '%Y-%m-%d %H:%M:%S' model inital time |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
there is a typo in inital (should be initial)
Description
Added error checking to window calculation script.
Fixes issue
Fixes #8 python