-
Notifications
You must be signed in to change notification settings - Fork 297
gnss: change http to https for UNR URLs
#1332
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
Conversation
Reviewer's Guide by SourceryThis pull request updates the URLs for the University of Nevada Reno (UNR) GNSS data source from HTTP to HTTPS. This change ensures that the application uses a secure connection when accessing data from UNR. Updated class diagram for the UNR GNSS data sourceclassDiagram
class UNR {
-url_prefix: str
-url: str
+__init__(site: str, data_dir: str, version: str, url_prefix: str)
+dload_site(overwrite: bool, total_tries: int, print_msg: bool)
}
note for UNR "URLs updated from HTTP to HTTPS"
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
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 @rzinke - I've reviewed your changes - here's some feedback:
Overall Comments:
- Consider removing the print statement added for debugging before merging.
- It would be good to add a comment explaining why the URL needs to be updated.
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: all looks good
Help me be more useful! Please click π or π on each comment and I'll use the feedback to improve your reviews.
gnss: change http to https for UNR URLs
yunjunz
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.
LGTM. Thank you @rzinke!
Update web address for UNR GPS data
University of Nevada Reno National Geodetic Laboratory has updated their web addresses to http secure protocol. This PR updates the appropriate links in the mintpy.objects.gnss module.
Tested with:
The download is currently slow on my home machine (8 minutes for 27 stations). I do not know if it is faster on different networks or at different times of day.
Summary by Sourcery
Updates UNR URLs from HTTP to HTTPS to use a secure protocol.