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.
Instructions
This is an example of homework 2 pull request format. Please follow the following instructions to create your pull request for submission.
First you want to start with creating a new branch. I'd suggest to name your branch like
homework2orfeature/data-acquisition.Once you created this branch, please collaborate with your teammate(s) to work within and only within this branch. In other word, all your work for homework 2 should be on this branch.
When you are done with homework 2 implementation, you may open pull request by clicking on the pull request tab like below:

Then click on

New Pull RequestbuttonBase should be

masterbranch and you want to merge your own homework2 branch in.With above steps, your pull request should be created. You can now submit this link on CSNS.
Next you want to answer the following questions in your pull request description.
Questions
What question(s) did you decide to work on as a team?
We want to figure out how much time does California have left before we used out all the water by the water usage of each city and weather data.
What is your data source(s)?
http://water.usgs.gov/watuse/
http://openweathermap.org/
How long does it take for you to download data? Have you download complete data set?
It took us about 24 hours to download the entire data set from usgs.gov. That is the complete data set we have from the government.
As for the open weather, it took us about 48 hours to download the weather data of 2015 to current. We are still getting all the real time values from the open weather api.
Although there are still data coming in from the open weather data, we believe this is the complete data set we have from open weather!
As for water usage data, we'd love to get real time data of water usage but we haven't figured out a place to get such data. Thus, water usage data is not completed.
How large is your data (size wise and number of records wise)?
8 GB total.
About 2 million records of text data.
Do you face any dirty data issue? If you do, how did you clean up your data?
Yes, data from usgs.gov is not returning all the data sometimes. We found some missing records and we have to manually remove them out.
How do you store the data you downloaded?
We store all the data in the CSV format.