-
Notifications
You must be signed in to change notification settings - Fork 0
Replacing functions with BB Class #2
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
Open
BluIsBest
wants to merge
47
commits into
main
Choose a base branch
from
New-Class-Definition
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This class will allow one location to be stored as a single object. Further improvements to call on data from a singular buoy will be added. SSI calculations can now be done by calling "BB-object".get_SSI_(WVHT / PRES / WSPD) class function.
Corrected to new gatheringInfo.py
Added functionality to get information from individual buoys, such as wind speed, wave height, pressure, along with the longitude & latitude, and the name of the station
finished callback to display data for the specific buoy and the region
Due to our project needing to grab the most recent information from the buoys, we sort by the most recent hour and minutes which the NDBC_API library does not natively support. We edit the API so that we can sort by hours & minutes, and are uploading the api to our project so someone could seamlessly install our project and have it work for them. All credit to the creators of the NDBC_API, I take no credit for any of the code that makes this api work.
We take no credit from the original creators of the NDBC-api for python. We simply needed to change a single line to get it to remain functional for what we needed it for and in order to make the transition from downloading this code from github to using it as easy as possible we are uploading it
This is painful to try and get the api to upload properly :(
Allows the user to give longitude, latitude for any location and will pull the nearest stations to give storm data
removed prevent_initial_call from callback to allow button functionality
removed prevent_initial_callback for button functionality
removed prevent_initial_callback for button functionality
removed prevent_initial_callback for button functionality
removed prevent_initial_callback for button functionality
removed prevent_initial_callback for button functionality
removed prevent_initial_callback for button functionality
Debugging how this works with NDBC_api
changed return statement such that line breaks occur between each string
update return statement with line breaks
update return statement with line breaks
update return statement with correct line breaks
update return statement with correct line breaks for html
update return statement with correct line breaks for html
update return statement with correct line breaks for html
update return statement with correct line breaks for html
finish callback function for south carolina and update return statement with correct line breaks for html
fixed duplicate mass_output and mass_dropdown to sc_output and sc_dropdown
Page for a custom location for the user. Needs further function definition with the use of radial search.
latitude and longitude input gui
Double check for correct usage of gatheringInfo.Add_New_Location(lat, long) function
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This class will allow one location to be stored as a single object. Further improvements to call on data from a singular buoy will be added. SSI calculations can now be done by calling
"BB-object".get_SSI_(WVHT / PRES / WSPD) class function.