-
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
refactor(docs): update installation instructions for GOES-DL package #7
Conversation
Reviewer's Guide by SourceryThis PR updates the installation and usage documentation in the README.md file. The changes clarify the installation process and provide more detailed examples for downloading data from different GOES satellite sources, including specific information about data repositories and caching configurations. 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 value (infinity) means files will never expire.
# Set cache=600 to refresh data every 10 minutes.
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
Merge pull request #7 from wvenialbo/fix-readme-v0.1-rc2
Summary by Sourcery
Revise the documentation to update the installation instructions for the GOES-DL package, clarify data source archives, and introduce additional configuration options for data downloading.
Documentation: