pyrfu.pyrf.normalize module#
- pyrfu.pyrf.normalize.normalize(inp: DataArray) DataArray[source]#
Normalizes the input field.
- Parameters:
inp (DataArray) – Time series of the input field.
- Returns:
Time series of the normalized input field.
- Return type:
DataArray
- Raises:
TypeError – If input is not a DataArray.
ValueError – If input is not a 2D 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)