Serial port and GPS

CoordDelegate Delegate

Callback for position informations obtained from GGA

[Visual Basic]
Public Delegate Sub CoordDelegate( _
   ByVal utcTime As Double, _
   ByVal n_lat As Double, _
   ByVal e_long As Double, _
   ByVal utmnorthing As Double, _
   ByVal utmeasting As Double, _
   ByVal altitude As Double _
)
[C#]
public delegate void CoordDelegate(
   double utcTime,
   double n_lat,
   double e_long,
   double utmnorthing,
   double utmeasting,
   double altitude
);

Parameters

utcTime
UTC time from GPS
n_lat
North latitude, negative for south
e_long
East longitude, negative for west
utmnorthing
n_lat recomputed to UTM
utmeasting
e_long recomputed to UTM
altitude
altitude (alevation) in meters

Requirements

Namespace: serial

Assembly: gpsx (in gpsx.exe)

See Also

serial Namespace