pyrfu.pyrf.normalize module#

pyrfu.pyrf.normalize.normalize(inp)[source]#

Normalizes the input field.

Parameters:

inp (xarray.DataArray) – Time series of the input field.

Returns:

out – Time series of the normalized input field.

Return type:

xarray.DataArray

Examples

>>> from pyrfu import mms, pyrf

Time interval

>>> tint = ["2019-09-14T07:54:00.000", "2019-09-14T08:11:00.000"]

Spacecraft index

>>> mms_id = 1

Load magnetic field

>>> b_xyz = mms.get_data("B_gse_fgm_srvy_l2", tint, mms_id)

Compute the normalized magnetic field

>>> b = pyrf.normalize(b_xyz)