""" This file is part of MSS. :copyright: Copyright 2021-2022 by the MSS team, see AUTHORS. :license: APACHE-2.0, see LICENSE for details. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. """ import numpy as np from mslib.mswms.mpl_lsec import AbstractLinearSectionStyle import mslib.utils.thermolib as thermolib from mslib.utils.units import convert_to class LS_RelativeHumdityStyle_01(AbstractLinearSectionStyle): """ Linear plot of relative humidity. """ name = "LS_RH01" title = "Relative Humdity (%) Linear Plot" abstract = "Relative humdity (%)" # Variables with the highest number of dimensions first (otherwise # MFDatasetCommonDims will throw an exception)! required_datafields = [ ("ml", "air_pressure", "Pa"), ("ml", "air_temperature", "K"), ("ml", "specific_humidity", "kg/kg")] def _prepare_datafields(self): """ Computes relative humdity. """ self.data["relative_humidity"] = thermolib.rel_hum( self.data['air_pressure'], self.data["air_temperature"], self.data["specific_humidity"]) self.variable = "relative_humidity" self.y_values = self.data[self.variable] self.unit = "%"