|
| 1 | +# Mission to Mars |
| 2 | + |
| 3 | + |
| 4 | + |
| 5 | +In this assignment, you will build a web application that scrapes various websites for data related to the Mission to Mars and displays the information in a single HTML page. The following outlines what you need to do. |
| 6 | + |
| 7 | +## Step 1 - Scraping |
| 8 | + |
| 9 | +Complete your initial scraping using Jupyter Notebook, BeautifulSoup, Pandas, and Requests/Splinter. |
| 10 | + |
| 11 | +* Create a Jupyter Notebook file called `mission_to_mars.ipynb` and use this to complete all of your scraping and analysis tasks. The following outlines what you need to scrape. |
| 12 | + |
| 13 | +### NASA Mars News |
| 14 | + |
| 15 | +* Scrape the [NASA Mars News Site](https://mars.nasa.gov/news/) and collect the latest News Title and Paragraph Text. Assign the text to variables that you can reference later. |
| 16 | + |
| 17 | +```python |
| 18 | +# Example: |
| 19 | +news_title = "NASA's Next Mars Mission to Investigate Interior of Red Planet" |
| 20 | + |
| 21 | +news_p = "Preparation of NASA's next spacecraft to Mars, InSight, has ramped up this summer, on course for launch next May from Vandenberg Air Force Base in central California -- the first interplanetary launch in history from America's West Coast." |
| 22 | +``` |
| 23 | + |
| 24 | +### JPL Mars Space Images - Featured Image |
| 25 | + |
| 26 | +* Visit the url for JPL's Featured Space Image [here](https://www.jpl.nasa.gov/spaceimages/?search=&category=Mars). |
| 27 | + |
| 28 | +* Use splinter to navigate the site and find the image url for the current Featured Mars Image and assign the url string to a variable called `featured_image_url`. |
| 29 | + |
| 30 | +* Make sure to find the image url to the full size `.jpg` image. |
| 31 | + |
| 32 | +* Make sure to save a complete url string for this image. |
| 33 | + |
| 34 | +```python |
| 35 | +# Example: |
| 36 | +featured_image_url = 'https://www.jpl.nasa.gov/spaceimages/images/largesize/PIA16225_hires.jpg' |
| 37 | +``` |
| 38 | + |
| 39 | +### Mars Weather |
| 40 | + |
| 41 | +* Visit the Mars Weather twitter account [here](https://twitter.com/marswxreport?lang=en) and scrape the latest Mars weather tweet from the page. Save the tweet text for the weather report as a variable called `mars_weather`. |
| 42 | + |
| 43 | +```python |
| 44 | +# Example: |
| 45 | +mars_weather = 'Sol 1801 (Aug 30, 2017), Sunny, high -21C/-5F, low -80C/-112F, pressure at 8.82 hPa, daylight 06:09-17:55' |
| 46 | +``` |
| 47 | + |
| 48 | +### Mars Facts |
| 49 | + |
| 50 | +* Visit the Mars Facts webpage [here](http://space-facts.com/mars/) and use Pandas to scrape the table containing facts about the planet including Diameter, Mass, etc. |
| 51 | + |
| 52 | +* Use Pandas to convert the data to a HTML table string. |
| 53 | + |
| 54 | +### Mars Hemispheres |
| 55 | + |
| 56 | +* Visit the USGS Astrogeology site [here](https://astrogeology.usgs.gov/search/results?q=hemisphere+enhanced&k1=target&v1=Mars) to obtain high resolution images for each of Mar's hemispheres. |
| 57 | + |
| 58 | +* You will need to click each of the links to the hemispheres in order to find the image url to the full resolution image. |
| 59 | + |
| 60 | +* Save both the image url string for the full resolution hemisphere image, and the Hemisphere title containing the hemisphere name. Use a Python dictionary to store the data using the keys `img_url` and `title`. |
| 61 | + |
| 62 | +* Append the dictionary with the image url string and the hemisphere title to a list. This list will contain one dictionary for each hemisphere. |
| 63 | + |
| 64 | +```python |
| 65 | +# Example: |
| 66 | +hemisphere_image_urls = [ |
| 67 | + {"title": "Valles Marineris Hemisphere", "img_url": "..."}, |
| 68 | + {"title": "Cerberus Hemisphere", "img_url": "..."}, |
| 69 | + {"title": "Schiaparelli Hemisphere", "img_url": "..."}, |
| 70 | + {"title": "Syrtis Major Hemisphere", "img_url": "..."}, |
| 71 | +] |
| 72 | +``` |
| 73 | + |
| 74 | +- - - |
| 75 | + |
| 76 | +## Step 2 - MongoDB and Flask Application |
| 77 | + |
| 78 | +Use MongoDB with Flask templating to create a new HTML page that displays all of the information that was scraped from the URLs above. |
| 79 | + |
| 80 | +* Start by converting your Jupyter notebook into a Python script called `scrape_mars.py` with a function called `scrape` that will execute all of your scraping code from above and return one Python dictionary containing all of the scraped data. |
| 81 | + |
| 82 | +* Next, create a route called `/scrape` that will import your `scrape_mars.py` script and call your `scrape` function. |
| 83 | + |
| 84 | + * Store the return value in Mongo as a Python dictionary. |
| 85 | + |
| 86 | +* Create a root route `/` that will query your Mongo database and pass the mars data into an HTML template to display the data. |
| 87 | + |
| 88 | +* Create a template HTML file called `index.html` that will take the mars data dictionary and display all of the data in the appropriate HTML elements. Use the following as a guide for what the final product should look like, but feel free to create your own design. |
| 89 | + |
| 90 | + |
| 91 | + |
| 92 | + |
| 93 | +- - - |
| 94 | + |
| 95 | +## Hints |
| 96 | + |
| 97 | +* Use Splinter to navigate the sites when needed and BeautifulSoup to help find and parse out the necessary data. |
| 98 | + |
| 99 | +* Use Pymongo for CRUD applications for your database. For this homework, you can simply overwrite the existing document each time the `/scrape` url is visited and new data is obtained. |
| 100 | + |
| 101 | +* Use Bootstrap to structure your HTML template. |
| 102 | + |
| 103 | +## Copyright |
| 104 | + |
| 105 | +Trilogy Education Services © 2017. All Rights Reserved. |
0 commit comments