-
Notifications
You must be signed in to change notification settings - Fork 0
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
Fix readme v0.1 rc2 #8
Conversation
Reviewer's Guide by SourceryThis PR updates the README.md file to improve documentation clarity and provide more detailed examples for using the GOES-DL package. The changes include adding repository paths to examples, clarifying data source locations, and adding a new example for downloading GridSat-B1 data from NOAA's NCEI archive. No diagrams generated as the changes look simple and do not need a visual representation. File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
Here's the code health analysis summary for commits Analysis Summary
|
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.
Hey @wvenialbo - I've reviewed your changes and they look great!
Here's what I looked at during the review
- 🟢 General issues: all looks good
- 🟢 Security: all looks good
- 🟢 Testing: all looks good
- 🟢 Complexity: all looks good
- 🟡 Documentation: 2 issues found
Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.
datasource = DatasourceAWS(locator) | ||
# GOES-16 data is updated every 10 minutes. If you are downloading | ||
# old data, you may leave the cache refresh rate as default (+inf). | ||
datasource = DatasourceAWS(locator, repository="./my_data/goes-r", cache=600) |
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.
suggestion (documentation): Consider explaining the cache parameter's default value
The comment mentions '+inf' as the default value, but this might not be clear to all users. Consider adding a note about what this means in practice.
# GOES-16 data is updated every 10 minutes. If you are downloading
# old data, the default cache setting (infinite) means files will
# only be downloaded once and kept indefinitely.
datasource = DatasourceAWS(locator, repository="./my_data/goes-r", cache=600)
end="1984-08-24T00:00-0004", | ||
) | ||
|
||
# `files1` and files2` are lists of tuple[str, bytes] with file path and |
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.
issue (documentation): Fix missing backtick in files2 variable name
Summary by Sourcery
Update the README to provide clearer installation instructions and detailed examples for downloading data from various NOAA archives using the GOES-DL package.
Documentation: