Lecture 6

6.1 Read FIT-file from GOES and plot light curve(s), study and print header information -> Folder PlottGOES15, script goes.py
    discuss hdu.info()
    Change x-axis from hours into seconds
    Option: New version PlottGOES16, based on files in nc-format (Network Common Data format netCDF or nc)

6.2 Fit the leading edge of a light curve from GOES15 with different methods
    Gauss' approximation (add labels and title)  -> CurveFitting->fitgoes2.py add a title to the 2nd plot
    amp/(np.sqrt(2*np.pi)*wid)) * np.exp(-(x-cen)**2 /(2*wid**2)

6.3 Non linear fit of a table -> CurevFitting->nonlinearfit.py add x-axis label, y-axis label and a title
    a * x / (b + x)
    Add x-axis label, y-axis label and a title. Add a grid in x and y

