Home | History | Annotate | Download | only in navigation

Lines Matching refs:lat

12  * A representation of the actual map in terms of lat/long and x,y co-ordinates.
14 * the pixel positions for lat/long co-ordinates and vice versa.
215 double lat, lon;
228 lat = findLat(mp, getCentre().getLatitude());
229 if (lat == -1000) {
230 System.out.println("lat: " + lat);
233 lat = findLat(mp, 0.0, 85.0);
239 lat = -1 * lat;
241 if (lat == -1000 || lon == -1000) {
244 pos = new Position(lat, lon);
307 * @return {@code Position} object marking the map's (lat, long) centre
359 for (double lat = previousLat - 0.25; lat < previousLat + 1; lat += 0.00001) {
360 guessMP = NavCalculator.computeDMPClarkeSpheroid(0, lat);
363 return lat;