#!/usr/bin/env python # coding: utf-8 # # Practice Problems # ### Lecture 21 # Answer each number in a separate cell # # Rename the notebook with your lastName, first initial and the lecture # # ex. Cych_B_21 # # Turn this notebook into Canvas. # ## 1. Rose diagrams # - NOAA collects wind directional data for the US which we can download and do whatever we like with it (decide whether or not to go sailing or surfing, for example). We can also plot the data as a rose diagram. :) # - We downloaded data for May 14, 2017 (Mother's day) from this search: http://www.ndbc.noaa.gov/radial_search.php?lat1=33N&lon1=117W&uom=E&dist=250&ot=A&time=1 and reformatted the file as a csv datafile in Datasets/WindDirections/wind.csv # - Read in the data as a Pandas DataFrame. Use the **df.head( )** syntax (where **df** is the name of your wind DataFrame) to inspect the file first, then you can set the skiprows and/or header keywords appropriately. # - The wind directions are in the WDIR column. Use **df.dropna( )** to get rid of the blank WDIR lines. # - Plot the WDIR data as a rose diagram. # # ## 2. Equal angle nets # - Somebody measured the direction of the magnetic field at 33N and 117W for the last 10,000 years \[Ok not really but there are models of the secular variation of the field for this.\] # - Read in the data file in Datasets/GeomagneticDirections/dec_inc.csv # - Plot the declination (dec) and inclination (inc) data on an equal angle net as red symbols with black edges. Declinations are azimuths and inclination are plunges. # # ## 3. Equal area Nets # - Re-plot the declination (Dec) and inclination (Inc) data from problem 2 on an equal area net. # # # # In[ ]: