geomagnetism
Version:
Computes geomagnetic field information
16 lines (14 loc) • 444 B
JavaScript
module.exports = MagneticVector;
function MagneticVector(options){
this.bx = options.bx;
this.by = options.by;
this.bz = options.bz;
}
MagneticVector.prototype.rotate = function(coord_spherical, coord_geodetic) {
var psi = Math.PI/180 * (coord_spherical.phig - coord_geodetic.phi);
return new MagneticVector({
bz: this.bx*Math.sin(psi) + this.bz*Math.cos(psi),
bx: this.bx*Math.cos(psi) - this.bz*Math.sin(psi),
by: this.by
});
};