Radar structures
This class stores information from all radars according to their hdw.dat and radar.dat This information is read from the radar.sqlite files provided with the pydarn module.
obj = pydarn.radar.network()
Note
To add your own radar information to this class you can use the radInfoIO.radarRead() and the radInfoIO.hdwRead(). Then, manually append the output of these functions to this object.
written by Sebastien, 2012-08
Get a list of all active radar codes
Belongs to: network
written by Sebastien, 2012-08
Get a specific radar from its name/code/id This method is the underlying function behing getRadarByCode, getRadarByName and getRadarById
Belongs to: network
written by Sebastien, 2012-08
Get a specific radar from its 3-letter code
Belongs to: network
# To get the Blackstone radar by its code
radar = obj.getRadarById('bks')
written by Sebastien, 2012-08
Get a specific radar from its ID
Belongs to: network
# To get the Blackstone radar by its ID
radar = obj.getRadarById(33)
written by Sebastien, 2012-08
Get a specific radar from its name
Belongs to: network
# To get the Blackstone radar by its name
radar = obj.getRadarById('Blackstone')
written by Sebastien, 2012-08
Get a list of radars able to see a given point on Earth
Belongs to: network
radars = obj.getRadarsByPosition(67., 134., 300.)
written by Sebastien, 2012-08
Reads radar.dat file and hdw.dat for a given radar and fills a radar structure
obj = pydarn.radar.radar()
written by Sebastien, 2012-08
Reads hdw.dat for a given radar and fills a SITE structure
obj = pydarn.radar.site()
written by Sebastien, 2012-08
Get azimuth of given beam
Get azimuth of given beam
fill site structure from sqlite databse
Belongs to: site
written by Sebastien, 2013-02
alias of pydarn.radar.radStruct