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,z co-ordinates.
14 * the world unit positions for lat/long coordinates and vice versa. This map projection
247 double lat, lon;
260 lat = findLat(mp, getCentre().getLatitude());
261 if (lat == -1000) {
262 System.out.println("lat: " + lat);
265 lat = findLat(mp, 0.0, 85.0);
271 lat = -1 * lat;
273 if (lat == -1000 || lon == -1000) {
276 pos = new Position(lat, lon);
325 * @return <code>Position</code> object marking the map's (lat, long)
380 for (double lat = previousLat - 0.25; lat < previousLat + 1; lat += 0.00001) {
381 guessMP = NavCalculator.computeDMPClarkeSpheroid(0, lat);
384 return lat;