import java.util.*; public class Latitude { private double value; public double getValue() { return this.value; } public double updateGPS(double lat2, double long2) { this.value = lat2; return this.value; } }