Edit

Share via


MeteorologicalComposite Constructors

Definition

Overloads

MeteorologicalComposite(TalkerSentence, DateTimeOffset)

Internal constructor

MeteorologicalComposite(TalkerId, IEnumerable<String>, DateTimeOffset)

Date and time message (ZDA). This should not normally need the last time as argument, because it defines it.

MeteorologicalComposite(Nullable<Pressure>, Nullable<Temperature>, Nullable<Temperature>, Nullable<RelativeHumidity>, Nullable<Temperature>)

Constructs a new MDA sentence

MeteorologicalComposite(TalkerSentence, DateTimeOffset)

Internal constructor

public MeteorologicalComposite (Iot.Device.Nmea0183.TalkerSentence sentence, DateTimeOffset time);
new Iot.Device.Nmea0183.Sentences.MeteorologicalComposite : Iot.Device.Nmea0183.TalkerSentence * DateTimeOffset -> Iot.Device.Nmea0183.Sentences.MeteorologicalComposite
Public Sub New (sentence As TalkerSentence, time As DateTimeOffset)

Parameters

sentence
TalkerSentence

Applies to

MeteorologicalComposite(TalkerId, IEnumerable<String>, DateTimeOffset)

Date and time message (ZDA). This should not normally need the last time as argument, because it defines it.

public MeteorologicalComposite (Iot.Device.Nmea0183.TalkerId talkerId, System.Collections.Generic.IEnumerable<string> fields, DateTimeOffset time);
new Iot.Device.Nmea0183.Sentences.MeteorologicalComposite : Iot.Device.Nmea0183.TalkerId * seq<string> * DateTimeOffset -> Iot.Device.Nmea0183.Sentences.MeteorologicalComposite
Public Sub New (talkerId As TalkerId, fields As IEnumerable(Of String), time As DateTimeOffset)

Parameters

talkerId
TalkerId

Applies to

MeteorologicalComposite(Nullable<Pressure>, Nullable<Temperature>, Nullable<Temperature>, Nullable<RelativeHumidity>, Nullable<Temperature>)

Constructs a new MDA sentence

public MeteorologicalComposite (UnitsNet.Pressure? pressure, UnitsNet.Temperature? airTemperature, UnitsNet.Temperature? waterTemperature, UnitsNet.RelativeHumidity? relativeHumidity, UnitsNet.Temperature? dewPoint);
new Iot.Device.Nmea0183.Sentences.MeteorologicalComposite : Nullable<UnitsNet.Pressure> * Nullable<UnitsNet.Temperature> * Nullable<UnitsNet.Temperature> * Nullable<UnitsNet.RelativeHumidity> * Nullable<UnitsNet.Temperature> -> Iot.Device.Nmea0183.Sentences.MeteorologicalComposite
Public Sub New (pressure As Nullable(Of Pressure), airTemperature As Nullable(Of Temperature), waterTemperature As Nullable(Of Temperature), relativeHumidity As Nullable(Of RelativeHumidity), dewPoint As Nullable(Of Temperature))

Parameters

pressure
Nullable<UnitsNet.Pressure>

Barometric pressure

airTemperature
Nullable<UnitsNet.Temperature>

Temperature of air

waterTemperature
Nullable<UnitsNet.Temperature>

Water temperature

relativeHumidity
Nullable<UnitsNet.RelativeHumidity>

Relative humidity, percent

dewPoint
Nullable<UnitsNet.Temperature>

Dew point

Applies to