Serial port and GPS

SerialGPSForm.gpscoord Method 

Callback method for coordinates received from GPS

[Visual Basic]
Private Sub gpscoord( _
   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#]
private void gpscoord(
   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 (elevation) in meters

See Also

SerialGPSForm Class | serial Namespace