a class to represent a record of ae data. Extends gme.base.gmeBase.gmeData . Note that Ae data is available from 1990-present day (or whatever the latest WDC has uploaded is). We have 1 hour and 1 minute values. Information about dst can be found here
Note
If any of the members have a value of None, this means that they could not be read for that specific time
emptyAeObj = gme.ind.aeRec()
written by AJ, 20130131
This method is used to convert a line of ae data from the WDC to a aeRec object
Note
In general, users will not need to worry about this.
Belongs to: gme.ind.ae.aeRec
myAeObj.parseWeb(webLine)
written by AJ, 20130131
This function reads ae data from wdc and puts it in mongodb
Warning
In general, nobody except the database admins will need to use this function
gme.ind.mapAeMongo(1997)
written by AJ, 20130123
This function reads ae data from the mongodb. The data are 1-minute values
import datetime as dt
aeList = gme.ind.readAe(sTime=dt.datetime(2011,1,1),eTime=dt.datetime(2011,6,1),res=60,ao=[-50,50])
written by AJ, 20130131
This function reads ae data from the WDC kyoto website
Warning
You should not use this. Use the general function gme.ind.ae.readAe() instead.
import datetime as dt
aeList = gme.ind.readAeWeb(dt.datetime(2011,1,1,1,50),eTime=dt.datetime(2011,1,1,10,0))
written by AJ, 20130131
alias of gme.ind.ae