Read the ground speed of the GPS.
GPS.speed()
None.
GPS ground speed in km/h.
// Check if there is new GPS data available
if (GPS.available()) {
// Read GPS data
float speed = GPS.speed();
// ...
// Print GPS data
Serial.print("Ground speed: ");
Serial.print(speed);
Serial.println(" km/h");
}