In [0]:
from matplotlib import pyplot as plt
In [0]:
%matplotlib inline
In [0]:
img = plt.imread('images/sat_problem.png')
fig,axis=plt.subplots(1,1,figsize=(6,6))
the_img=axis.imshow(img)
the_img.set_cmap('gray')
Q1) What is the field of view of the satellite telescope, in steradians? (Use python to do the calculation below)
In [0]:
In [0]: