Contributors (Add Your Name Here):
Patrick Daniel - Eve was here :) Sorry Aubrey.
New Feature
This project analyzes the seawater intake temperature data from the Monterey Bay Aquarium. The goal is to understand temperature trends and their potential impact on marine life.
The dataset includes daily temperature readings from the seawater intake system at the Monterey Bay Aquarium. The data spans multiple years and is stored in a CSV file.
To run the analysis, you will need to install the following dependencies:
pip install pandas matplotlibTo perform the analysis, you will first need to download the data from the CeNCOOS ERDDAP server.
Download Data
./src/download_data.shGenerate Figures
python analyze_temperature.pyThe results of the analysis will be saved in the results directory, including plots. Two plots are generate. First a timeseries of sea water temeperature with a 40 hour 'hann' low pass filter applied. Second, a scatter plot of temperature and dissolved oxygen saturation.
You task, should you choose to accept, is to make to fork this repository.
- Navigate to the GitHub repository you want to contribute to.
- Click the Fork button at the top-right corner of the page.
- This creates a copy of the repository under your GitHub account.
-
Open a terminal or command prompt.
-
Run the following command to clone the repository to your local machine:
git clone https://github.com/YOUR-USERNAME/git-mbay-temperature.git
-
Navigate into the project directory:
cd git-mbay-temperature
-
Before making changes, create a new branch:
git checkout -b your-branch-name
-
Use a descriptive name for your branch, such as
fix-bug-123oradd-feature-x.
- Open the THIS FILE (README.md) in your preferred code editor.
- Add your Name and your email (formatted for markdown)
- Save your changes.
-
Stage your changes:
git add . -
Commit your changes with a meaningful message:
git commit -m "Add your message here"
-
Push your changes to your forked repository:
git push origin your-branch-name
- Navigate to your forked repository on GitHub.
- Click the Compare & pull request button.
- Provide a meaningful title and description for your changes.
- Click Create pull request.
-
The project maintainers may review your pull request and request changes.
-
If needed, update your branch:
git add . git commit -m "Address feedback from maintainers" git push origin your-branch-name
-
Your PR will update automatically with your new commits.
-
Once approved, the maintainers will merge your pull request.
-
You can delete your branch locally and remotely:
git branch -d your-branch-name git push origin --delete your-branch-name
-
Switch to the main branch:
git checkout main
-
Add the original repository as an upstream remote:
git remote add upstream https://github.com/patcdaniel/git-mbay-temperature
-
Fetch the latest changes:
git fetch upstream
-
Merge the changes:
git merge upstream/main
-
Push the updates to your fork:
git push origin main
Congratulations!🎉You have successfully contributed to an open-source project.🎉
This project is licensed under the MIT License.