a class to represent a record of dst data. Extends gme.base.gmeBase.gmeData. Note that Dst data is available from 1980-present day (or whatever the latest WDC has uploaded is). The data are 1-hour 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
emptyDstObj = gme.ind.dstRec()
written by AJ, 20130131
This method is used to convert a line of dst data from the WDC to a dstRec object
Note
In general, users will not need to worry about this.
Belongs to: gme.ind.dst.dstRec
myDstObj.parseWeb(webLine)
written by AJ, 20130131
This function reads dst data from wdc and puts it in mongodb
Warning
In general, nobody except the database admins will need to use this function
gme.ind.mapDstMongo(1997)
written by AJ, 20130123
This function reads dst data from the mongodb.
import datetime as dt
dstList = gme.ind.readDst(sTime=dt.datetime(2011,1,1),eTime=dt.datetime(2011,6,1),dst=[-50,50])
written by AJ, 20130131
This function reads dst data from the WDC kyoto website
Warning
You should not use this. Use the general function readDst() instead.
import datetime as dt
dstList = gme.ind.readDstWeb(dt.datetime(2011,1,1,1,50),eTime=dt.datetime(2011,1,1,10,0))
written by AJ, 20130131
alias of gme.ind.dst