Radiosonde

Main functions

class SignalCreation.Read.Radiosonde.Radiosonde(path_file, type_file)
Parameters:
  • path_file (str | List[str])

  • type_file (str)

_fill_data_set()

Read and format the data from the radiosonde file into a data frame

delete_data_altitude_not_strictly_increasing()

Delete data when altitude is not strictly increasing.

Returns:

fill_radiosounding_nimes_v02()

Fill Dataset with tun file

get_pressure(altitude=None, unit_pressure=None)

Get the temperature at a given altitude.

If the altitude is outside of the model’s altitude range, the method returns None

Parameters:
  • altitude (Quantity | None) – pint.Quantity The altitude at which the temperature must be returned, it can be a single value or an array

  • unit_pressure – str The unit of the altitude

Returns:

xr.DataArray The requested information

Return type:

DataArray

get_temperature(altitude=None, unit_temperature=None)
Get the temperature at a given altitude.

If the altitude is outside of the model’s altitude range, the method returns None

Parameters:
  • altitude (Quantity | None) – pint.Quantity The altitude at which the temperature must be returned, it can be a single value or an array

  • unit_temperature – str The unit of the temperature

Returns:

xr.DataArray The requested information

Return type:

DataArray