Read the course of the GPS.
GPS.course()
None.
GPS course in degrees.
// Check if there is new GPS data available
if (GPS.available()) {
// Read GPS data
float course = GPS.course();
// ...
// Print GPS data
Serial.print("Course: ");
Serial.print(course);
Serial.println(" degrees");
}