This module handles RBSP foorpoint calculations and plotting
This class reads FPs from the SuperDARN FPs database, or generate them if necessary
# Get all the FPs for 1/Sept/2012 from 0 to 6 UT
from datetime import datetime
import rbsp
sTime = datetime(2012,9,1,0)
eTime = datetime(2012,9,1,6)
fps = rbsp.rbspFp(sTime, eTime)
# Pretty print the apogees in that period
print fps
# Plot them on a map
fps.map()
Warning
try not to request more than 24 hours at once, unless all you want are apogees.
written by Sebastien de Larquier, 2013-03
Plot FPs on a map
Belongs to: rbspFp
# To plot 2 panels (1 per hemisphere)
fig = figure(figsize=(11,8))
subplot(121)
fps.map()
subplot(122)
fps.map(hemisphere='South')
fig.tight_layout()
alias of gme.sat.rbsp